aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-02-03 19:27:19 -0600
committerGitHub <noreply@github.com>2023-02-03 19:27:19 -0600
commit7c7446ab1e467c29f86e9bfba260741fc469389a (patch)
tree9ad0f513c2844a86653ca41e78121d58fc22456b
parent6e818852d868eea963dd2b8489ba75b65c56fb1c (diff)
downloadazalea-drasl-7c7446ab1e467c29f86e9bfba260741fc469389a.tar.xz
Bump tokio from 1.23.1 to 1.24.2 (#62)
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.23.1 to 1.24.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-rw-r--r--Cargo.lock4
-rw-r--r--azalea-auth/Cargo.toml4
-rw-r--r--azalea-buf/Cargo.toml2
-rw-r--r--azalea-client/Cargo.toml2
-rw-r--r--azalea-protocol/Cargo.toml2
-rw-r--r--azalea/Cargo.toml2
-rw-r--r--bot/Cargo.toml2
7 files changed, 9 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c47a3e25..d7502e43 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2038,9 +2038,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
-version = "1.23.1"
+version = "1.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38a54aca0c15d014013256222ba0ebed095673f89345dd79119d912eb561b7a8"
+checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb"
dependencies = [
"autocfg",
"bytes",
diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml
index 5de305d5..83515500 100644
--- a/azalea-auth/Cargo.toml
+++ b/azalea-auth/Cargo.toml
@@ -18,9 +18,9 @@ reqwest = {version = "0.11.12", features = ["json"]}
serde = {version = "1.0.145", features = ["derive"]}
serde_json = "1.0.86"
thiserror = "1.0.37"
-tokio = {version = "1.23.1", features = ["fs"]}
+tokio = {version = "1.24.2", features = ["fs"]}
uuid = {version = "^1.1.2", features = ["serde"]}
[dev-dependencies]
env_logger = "0.9.3"
-tokio = {version = "1.23.1", features = ["full"]}
+tokio = {version = "1.24.2", features = ["full"]}
diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml
index 30c71afb..86760c50 100644
--- a/azalea-buf/Cargo.toml
+++ b/azalea-buf/Cargo.toml
@@ -14,7 +14,7 @@ byteorder = "^1.4.3"
log = "0.4.17"
serde_json = {version = "^1.0", optional = true}
thiserror = "1.0.37"
-tokio = {version = "^1.23.1", features = ["io-util", "net", "macros"]}
+tokio = {version = "^1.24.2", features = ["io-util", "net", "macros"]}
uuid = "^1.1.2"
[features]
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml
index 40653308..01ffc601 100644
--- a/azalea-client/Cargo.toml
+++ b/azalea-client/Cargo.toml
@@ -25,6 +25,6 @@ once_cell = "1.16.0"
parking_lot = {version = "^0.12.1", features = ["deadlock_detection"]}
regex = "1.7.0"
thiserror = "^1.0.34"
-tokio = {version = "^1.23.1", features = ["sync"]}
+tokio = {version = "^1.24.2", features = ["sync"]}
typemap_rev = "0.3.0"
uuid = "^1.1.2"
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml
index 9066cdc3..79a8913f 100644
--- a/azalea-protocol/Cargo.toml
+++ b/azalea-protocol/Cargo.toml
@@ -31,7 +31,7 @@ log = "0.4.17"
serde = {version = "1.0.130", features = ["serde_derive"]}
serde_json = "^1.0.72"
thiserror = "1.0.37"
-tokio = {version = "^1.23.1", features = ["io-util", "net", "macros"]}
+tokio = {version = "^1.24.2", features = ["io-util", "net", "macros"]}
tokio-util = {version = "0.7.4", features = ["codec"]}
trust-dns-resolver = {version = "^0.22.0", default-features = false, features = ["tokio-runtime"]}
uuid = "1.1.2"
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml
index d3fba18f..27217017 100644
--- a/azalea/Cargo.toml
+++ b/azalea/Cargo.toml
@@ -28,7 +28,7 @@ num-traits = "0.2.15"
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
priority-queue = "1.3.0"
thiserror = "^1.0.37"
-tokio = "^1.23.1"
+tokio = "^1.24.2"
uuid = "1.2.2"
[dev-dependencies]
diff --git a/bot/Cargo.toml b/bot/Cargo.toml
index a8620a60..b3eeaf22 100644
--- a/bot/Cargo.toml
+++ b/bot/Cargo.toml
@@ -14,5 +14,5 @@ azalea-protocol = {path = "../azalea-protocol"}
env_logger = "0.9.1"
parking_lot = {version = "^0.12.1", features = ["deadlock_detection"]}
rand = "0.8.5"
-tokio = "1.23.1"
+tokio = "1.24.2"
uuid = "1.1.2"