Unverified Commit 05f920f6 authored by Russell Cohen's avatar Russell Cohen Committed by GitHub
Browse files

Upgrade Tokio to 1.23.1 (RUSTSEC-2023-0001) (#2474)

parent 1e71992d
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -353,3 +353,14 @@ references = ["smithy-rs#2471", "smithy-rs#2333", "smithy-rs#2151"]
meta = { "breaking" = false, "tada" = false, "bug" = true }
author = "rcoh"

[[smithy-rs]] # tokio-upgrade
message = "Increase Tokio version to 1.23.1 for all crates. This is to address [RUSTSEC-2023-0001](https://rustsec.org/advisories/RUSTSEC-2023-0001)"
references = ["smithy-rs#2474"]
meta = { "breaking" = false, "tada" = false, "bug" = false, target = "all" }
author = "rcoh"

[[aws-sdk-rust]] # tokio-upgrade
message = "Increase Tokio version to 1.23.1 for all crates. This is to address [RUSTSEC-2023-0001](https://rustsec.org/advisories/RUSTSEC-2023-0001)"
references = ["smithy-rs#2474"]
meta = { "breaking" = false, "tada" = false, "bug" = false }
author = "rcoh"
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ tower = { version = "0.4.8" }
futures-util = { version = "0.3.16", default-features = false }
tracing-test = "0.2.1"

tokio = { version = "1.8.4", features = ["full", "test-util"] }
tokio = { version = "1.23.1", features = ["full", "test-util"] }

# used for fuzzing profile parsing
arbitrary = "=1.1.3" # 1.1.4 requires Rust 1.63 to compile
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ test-util = []
aws-smithy-async = { path = "../../../rust-runtime/aws-smithy-async" }
aws-smithy-types = { path = "../../../rust-runtime/aws-smithy-types" }
fastrand = "1.4.0"
tokio = { version = "1.8.4", features = ["sync"] }
tokio = { version = "1.23.1", features = ["sync"] }
tracing = "0.1"
zeroize = "1"

@@ -26,7 +26,7 @@ aws-smithy-async = { path = "../../../rust-runtime/aws-smithy-async", features =
async-trait = "0.1.51"
env_logger = "0.9.0"

tokio = { version = "1.8.4", features = ["full", "test-util", "rt"] }
tokio = { version = "1.23.1", features = ["full", "test-util", "rt"] }
tracing-test = "0.2.1"

[package.metadata.docs.rs]
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ aws-smithy-protocol-test = { path = "../../../rust-runtime/aws-smithy-protocol-t
bytes-utils = "0.1.2"
env_logger = "0.9"
http = "0.2.3"
tokio = { version = "1.8.4", features = ["macros", "rt", "rt-multi-thread", "test-util", "time"] }
tokio = { version = "1.23.1", features = ["macros", "rt", "rt-multi-thread", "test-util", "time"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
proptest = "1"
serde = { version = "1", features = ["derive"]}
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ http = "0.2.4"
http-body = "0.4.5"
md-5 = "0.10.1"
ring = "0.16"
tokio = { version = "1.8.4", features = ["full"] }
tokio = { version = "1.23.1", features = ["full"] }
tokio-stream = "0.1.5"
tower = { version = "0.4", default-features = false }
tracing = "0.1"
Loading