Skip to content

Commit

Permalink
dependency: updated aws-sdk-kms dependencies & use default tls
Browse files Browse the repository at this point in the history
  • Loading branch information
sumukhballal committed Sep 9, 2024
1 parent ecab7eb commit 33a88ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ allow-wildcard-paths = true
skip = [
# some libraries are using an older version of base64
{ name = "base64", version = "=0.21" },
# some libraries are using an older version of half
{ name = "half", version = "=1.8.3" },
# the aws rust sdk is using an older version of http
{ name = "http", version = "=0.2" },
{ name = "http-body", version = "=0.4" },
Expand All @@ -77,6 +79,8 @@ skip = [
# tokio and mio are bringing in older versions of windows libraries while other
# libraries, are bringing in newer versions
{ name = "windows-sys", version = "=0.48" },
# some libraries are using an older version of windows-sys
{ name = "windows-sys", version = "=0.52" },
{ name = "windows-targets", version = "=0.48" },
{ name = "windows_aarch64_gnullvm", version = "=0.48" },
{ name = "windows_aarch64_msvc", version = "=0.48" },
Expand Down
2 changes: 1 addition & 1 deletion tough-kms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-kms/rustls"]
[dependencies]
tough = { version = "0.18", path = "../tough", features = ["http"] }
ring = { version = "0.17", features = ["std"] }
aws-sdk-kms = "1"
aws-sdk-kms = "1.41"
aws-config = "1"
snafu = { version = "0.8", features = ["backtraces-impl-backtrace-crate"] }
tokio = { version = "1", features = ["fs", "io-util", "time", "macros", "rt-multi-thread"] }
Expand Down
4 changes: 2 additions & 2 deletions tuftool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-ssm/rustls", "aws-sdk-kms/r

[dependencies]
aws-config = "1"
aws-sdk-kms = "1"
aws-sdk-kms = "1.41"
aws-sdk-ssm = "1"
chrono = { version = "0.4", default-features = false, features = ["alloc", "std", "clock"] }
clap = { version = "4", features = ["derive"] }
Expand All @@ -26,7 +26,7 @@ log = "0.4"
maplit = "1"
olpc-cjson = { version = "0.1", path = "../olpc-cjson" }
rayon = "1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }
reqwest = { version = "0.11", default-features = false, features = ["default-tls"] }
ring = { version = "0.17", features = ["std"] }
serde = "1"
serde_json = "1"
Expand Down

0 comments on commit 33a88ae

Please sign in to comment.