From b86a89fa1ea059b566217991a656b31bf6841ba0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Jan 2023 22:01:50 -0600 Subject: [PATCH] Bump tokio from 1.22.0 to 1.23.1 (#55) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.22.0 to 1.23.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.22.0...tokio-1.23.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 6 +++--- azalea-auth/Cargo.toml | 4 ++-- azalea-buf/Cargo.toml | 2 +- azalea-client/Cargo.toml | 2 +- azalea-protocol/Cargo.toml | 2 +- azalea/Cargo.toml | 4 ++-- bot/Cargo.toml | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) mode change 100755 => 100644 azalea-auth/Cargo.toml mode change 100755 => 100644 azalea-protocol/Cargo.toml diff --git a/Cargo.lock b/Cargo.lock index 22e004b1..e5783853 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1915,9 +1915,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.22.0" +version = "1.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3" +checksum = "38a54aca0c15d014013256222ba0ebed095673f89345dd79119d912eb561b7a8" dependencies = [ "autocfg", "bytes", @@ -1930,7 +1930,7 @@ dependencies = [ "signal-hook-registry", "socket2", "tokio-macros", - "winapi", + "windows-sys 0.42.0", ] [[package]] diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml old mode 100755 new mode 100644 index 8354cc3f..deffe62d --- 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.21.2", features = ["fs"]} +tokio = {version = "1.23.1", features = ["fs"]} uuid = "^1.1.2" [dev-dependencies] env_logger = "0.9.1" -tokio = {version = "1.21.2", features = ["full"]} +tokio = {version = "1.23.1", features = ["full"]} diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml index bd9c8538..30c71afb 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.21.2", features = ["io-util", "net", "macros"]} +tokio = {version = "^1.23.1", features = ["io-util", "net", "macros"]} uuid = "^1.1.2" [features] diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index a90235c5..05425e9c 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.21.2", features = ["sync"]} +tokio = {version = "^1.23.1", features = ["sync"]} typemap_rev = "0.2.0" uuid = "^1.1.2" diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml old mode 100755 new mode 100644 index a6db11bf..6da763bd --- 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.21.2", features = ["io-util", "net", "macros"]} +tokio = {version = "^1.23.1", 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 889eb935..7c82a00c 100644 --- a/azalea/Cargo.toml +++ b/azalea/Cargo.toml @@ -28,10 +28,10 @@ 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.21.2" +tokio = "^1.23.1" uuid = "1.2.2" [dev-dependencies] anyhow = "^1.0.65" env_logger = "^0.9.1" -tokio = "^1.21.2" +tokio = "^1.23.1" diff --git a/bot/Cargo.toml b/bot/Cargo.toml index 47b2a08f..a8620a60 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.19.2" +tokio = "1.23.1" uuid = "1.1.2"