Skip to content

Commit

Permalink
Check direct rust-runtime dependency minimum versions (#3980)
Browse files Browse the repository at this point in the history
  • Loading branch information
landonxjames authored Jan 22, 2025
2 parents 42744a9 + dae686a commit 8196903
Show file tree
Hide file tree
Showing 25 changed files with 214 additions and 214 deletions.
36 changes: 18 additions & 18 deletions aws/rust-runtime/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions aws/rust-runtime/aws-config/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions aws/rust-runtime/aws-credential-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws-credential-types"
version = "1.2.1"
version = "1.2.2"
authors = ["AWS Rust SDK Team <[email protected]>"]
description = "Types for AWS SDK credentials."
edition = "2021"
Expand All @@ -15,7 +15,7 @@ test-util = ["aws-smithy-runtime-api/test-util"]
aws-smithy-async = { path = "../../../rust-runtime/aws-smithy-async" }
aws-smithy-types = { path = "../../../rust-runtime/aws-smithy-types" }
aws-smithy-runtime-api = { path = "../../../rust-runtime/aws-smithy-runtime-api", features = ["client", "http-auth"] }
zeroize = "1"
zeroize = "1.7.0"

[dev-dependencies]
async-trait = "0.1.74" # used to test compatibility
Expand Down
8 changes: 4 additions & 4 deletions aws/rust-runtime/aws-inlineable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ aws-smithy-http = { path = "../../../rust-runtime/aws-smithy-http" }
aws-smithy-runtime = { path = "../../../rust-runtime/aws-smithy-runtime", features = ["client"] }
aws-smithy-runtime-api = { path = "../../../rust-runtime/aws-smithy-runtime-api", features = ["client"] }
aws-smithy-types = { path = "../../../rust-runtime/aws-smithy-types", features = ["http-body-0-4-x"] }
bytes = "1"
bytes = "1.4.0"
fastrand = "2.0.0"
hex = "0.4.3"
http = "0.2.9"
http-body = "0.4.5"
http-1x = { package = "http", version = "1", optional = true }
http-1x = { package = "http", version = "1.1.0", optional = true }
http-body-1x = { package = "http-body", version = "1", optional = true }
hmac = "0.12"
lru = "0.12.5"
ring = "0.17.5"
sha2 = "0.10"
tokio = "1.23.1"
tracing = "0.1"
tokio = "1.40.0"
tracing = "0.1.40"
url = "2.5.4"

[dev-dependencies]
Expand Down
12 changes: 6 additions & 6 deletions aws/rust-runtime/aws-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ aws-smithy-runtime = { path = "../../../rust-runtime/aws-smithy-runtime", featur
aws-smithy-runtime-api = { path = "../../../rust-runtime/aws-smithy-runtime-api", features = ["client"] }
aws-smithy-types = { path = "../../../rust-runtime/aws-smithy-types" }
aws-types = { path = "../aws-types" }
bytes = "1.1"
bytes = "1.4.0"
fastrand = "2.0.0"
http-02x = { package = "http", version = "0.2.3" }
http-02x = { package = "http", version = "0.2.9" }
http-body-04x = { package = "http-body", version = "0.4.5" }
http-1x = { package = "http", version = "1.1.0", optional = true }
http-body-1x = { package = "http-body", version = "1.0.0", optional = true }
once_cell = "1.18.0"
percent-encoding = "2.1.0"
pin-project-lite = "0.2.9"
once_cell = "1.20.1"
percent-encoding = "2.3.1"
pin-project-lite = "0.2.14"
regex-lite = { version = "0.1.5", optional = true }
tracing = "0.1"
tracing = "0.1.40"
uuid = { version = "1" }

[dev-dependencies]
Expand Down
18 changes: 9 additions & 9 deletions aws/rust-runtime/aws-sigv4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@ aws-smithy-eventstream = { path = "../../../rust-runtime/aws-smithy-eventstream"
aws-smithy-http = { path = "../../../rust-runtime/aws-smithy-http" }
aws-smithy-runtime-api = { path = "../../../rust-runtime/aws-smithy-runtime-api", features = ["client"] }
aws-smithy-types = { path = "../../../rust-runtime/aws-smithy-types" }
bytes = "1"
form_urlencoded = { version = "1.0", optional = true }
hex = "0.4"
bytes = "1.4.0"
form_urlencoded = { version = "1.2.1", optional = true }
hex = "0.4.3"
hmac = "0.12"
http0 = { version = "0.2", optional = true, package = "http" }
http = { version = "1", optional = true }
once_cell = "1.8"
http0 = { version = "0.2.9", optional = true, package = "http" }
http = { version = "1.1.0", optional = true }
once_cell = "1.20.1"
p256 = { version = "0.11", features = ["ecdsa"], optional = true }
percent-encoding = { version = "2.1", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
ring = { version = "0.17.5", optional = true }
sha2 = "0.10"
crypto-bigint = { version = "0.5.4", optional = true }
subtle = { version = "2.5.0", optional = true }
time = "0.3.5"
tracing = "0.1"
zeroize = { version = "^1", optional = true }
tracing = "0.1.40"
zeroize = { version = "^1.7.0", optional = true }

[dev-dependencies]
aws-credential-types = { path = "../aws-credential-types", features = ["test-util", "hardcoded-credentials"] }
Expand Down
2 changes: 1 addition & 1 deletion aws/rust-runtime/aws-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ aws-smithy-async = { path = "../../../rust-runtime/aws-smithy-async" }
aws-smithy-types = { path = "../../../rust-runtime/aws-smithy-types" }
aws-smithy-runtime = { path = "../../../rust-runtime/aws-smithy-runtime", optional = true }
aws-smithy-runtime-api = { path = "../../../rust-runtime/aws-smithy-runtime-api", features = ["client"] }
tracing = "0.1"
tracing = "0.1.40"
# cargo does not support optional test dependencies, so to completely disable rustls
# we need to add the webpki-roots feature here.
# https://github.com/rust-lang/cargo/issues/1596
Expand Down
Loading

0 comments on commit 8196903

Please sign in to comment.