diff --git a/Cargo.lock b/Cargo.lock index 52cb2cbb..81920f61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -183,9 +183,9 @@ dependencies = [ [[package]] name = "aws-runtime" -version = "1.8.1" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7816e98ee912159f45d307e5ee6bfea4a335a55aee15f7f3e32f81a6f3000f1d" +checksum = "c9007227e10b5fed2f3e0a2beff489211e2b5604c400b7a9d5d81ca9d64c24bb" dependencies = [ "aws-credential-types", "aws-sigv4", @@ -208,9 +208,9 @@ dependencies = [ [[package]] name = "aws-sdk-iam" -version = "1.114.0" +version = "1.116.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8542ee4c30a6586b496246113b0fcf31f3b31cec2046f34c3635a6ec4045a0fe" +checksum = "2df204fbe1c7d4d0510816011f22e591da8d28a67cce77180c61c0cc9d2a4659" dependencies = [ "arc-swap", "aws-credential-types", @@ -235,9 +235,9 @@ dependencies = [ [[package]] name = "aws-sdk-sts" -version = "1.108.0" +version = "1.110.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c72b08911d8128dd360fe1b22a9fec0fa8b552dde8ec828dcf20ef5ec974e9f" +checksum = "dd8b14781dfbff48984017d57167b6ea0b6471c6920ec52b44a2677c7feb3c13" dependencies = [ "arc-swap", "aws-credential-types", @@ -395,11 +395,14 @@ dependencies = [ [[package]] name = "aws-smithy-query" -version = "0.61.1" +version = "0.62.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd22a6ba36e3f113cb8d5b3d1fe0ed31c76ee608ef63322d753bb8d2c9479e77" +checksum = "512346c7212ab7436df2d77a16d976a468ae44a418835511d2a69269810aaf62" dependencies = [ + "aws-smithy-runtime-api", + "aws-smithy-schema", "aws-smithy-types", + "aws-smithy-xml", "urlencoding", ] @@ -498,9 +501,9 @@ dependencies = [ [[package]] name = "aws-smithy-xml" -version = "0.61.1" +version = "0.62.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea3f68eec3607f02acd24067969ce2abc6ba16aa7d5ce59ca450ed2fb5f78957" +checksum = "ce84f71c72fee2cbbadde6e7d082f5fb466e3a84733855295fa7aafd1b31b7d8" dependencies = [ "aws-smithy-runtime-api", "aws-smithy-schema", @@ -510,9 +513,9 @@ dependencies = [ [[package]] name = "aws-types" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e957a6c6dbce82b7a91f44231c09273159703769f447cbe85e854dfe9cf67f86" +checksum = "eec1cd5469f328c782dc3e33d4153cf118a54e33cbb3356d60d16f89883e1f94" dependencies = [ "aws-credential-types", "aws-smithy-async", diff --git a/Cargo.toml b/Cargo.toml index d137e43e..e3e3175c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,8 +3,8 @@ async-recursion = "1" aws-arn = "0.3" aws_config_mod = { git = "https://github.com/jonathanmorley/aws_config_mod", branch = "set-credentials" } aws-credential-types = "1" -aws-sdk-sts = { version = "1", features = ["behavior-version-latest"] } -aws-sdk-iam = { version = "1.108.1", features = ["behavior-version-latest"] } +aws-sdk-sts = { version = "1.110.0", features = ["behavior-version-latest"] } +aws-sdk-iam = { version = "1.116.0", features = ["behavior-version-latest"] } backoff = { version = "0.4", features = ["tokio"] } base64 = "0.22" clap = { version = "4.6.4", features = ["derive"] } @@ -44,8 +44,8 @@ url = { version = "2", features = ["serde"] } whoami = "1" eyre = "0.6" aws-smithy-types = "1.4.9" -aws-runtime = "1.7.5" -aws-types = "1.3.16" +aws-runtime = "1.9.1" +aws-types = "1.5.0" mockall_double = "0.3" reqwest-retry = "0.7.0" reqwest-middleware = "0.4.2"