From 2ee2de3d2aad5fdfe63074ff3b0158447a6daf11 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 15:51:30 +0000 Subject: [PATCH] Bump aws-types from 0.8.0 to 0.56.1 Bumps [aws-types](https://github.com/awslabs/smithy-rs) from 0.8.0 to 0.56.1. - [Release notes](https://github.com/awslabs/smithy-rs/releases) - [Changelog](https://github.com/awslabs/smithy-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/awslabs/smithy-rs/commits) --- updated-dependencies: - dependency-name: aws-types dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 198 +++++++++++++++++++++++++++++++------ create-rust-app/Cargo.toml | 2 +- 2 files changed, 170 insertions(+), 30 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dc0600cc..ab234691 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -458,14 +458,28 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +[[package]] +name = "aws-credential-types" +version = "0.56.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70a66ac8ef5fa9cf01c2d999f39d16812e90ec1467bd382cbbb74ba23ea86201" +dependencies = [ + "aws-smithy-async 0.56.1", + "aws-smithy-types 0.56.1", + "fastrand 2.0.0", + "tokio", + "tracing", + "zeroize", +] + [[package]] name = "aws-endpoint" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d0990fe9d60185efea41850b10a205f4a9abe71499ec70298b11d2d830130167" dependencies = [ - "aws-smithy-http", - "aws-types", + "aws-smithy-http 0.38.0", + "aws-types 0.8.0", "http", "regex", "tracing", @@ -477,9 +491,9 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6794b0b27fb74ef2696c41e1be08e916993ef043bbeda7ec554c4f50c3b81506" dependencies = [ - "aws-smithy-http", - "aws-smithy-types", - "aws-types", + "aws-smithy-http 0.38.0", + "aws-smithy-types 0.38.0", + "aws-types 0.8.0", "http", "lazy_static", "percent-encoding", @@ -496,14 +510,14 @@ dependencies = [ "aws-http", "aws-sig-auth", "aws-sigv4", - "aws-smithy-async", - "aws-smithy-client", + "aws-smithy-async 0.38.0", + "aws-smithy-client 0.38.0", "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-http-tower", - "aws-smithy-types", + "aws-smithy-http 0.38.0", + "aws-smithy-http-tower 0.38.0", + "aws-smithy-types 0.38.0", "aws-smithy-xml", - "aws-types", + "aws-types 0.8.0", "bytes", "http", "md5", @@ -519,8 +533,8 @@ checksum = "3fa501148ae6b5e0de5eeb8c4cf87fa3403d9a00077e543ad64011da781f73a6" dependencies = [ "aws-sigv4", "aws-smithy-eventstream", - "aws-smithy-http", - "aws-types", + "aws-smithy-http 0.38.0", + "aws-types 0.8.0", "http", "thiserror", "tracing", @@ -533,7 +547,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df08171e40dff9951df758f6648009800d26f4b62077edd2b567dd678416fd80" dependencies = [ "aws-smithy-eventstream", - "aws-smithy-http", + "aws-smithy-http 0.38.0", "bytes", "form_urlencoded", "hex", @@ -558,18 +572,30 @@ dependencies = [ "tokio-stream", ] +[[package]] +name = "aws-smithy-async" +version = "0.56.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cdb73f85528b9d19c23a496034ac53703955a59323d581c06aa27b4e4e247af" +dependencies = [ + "futures-util", + "pin-project-lite", + "tokio", + "tokio-stream", +] + [[package]] name = "aws-smithy-client" version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dad1857eb59d562e82f05c02fbcb9f46c1089301c86770a9798c9e64e5a4677a" dependencies = [ - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-http-tower", - "aws-smithy-types", + "aws-smithy-async 0.38.0", + "aws-smithy-http 0.38.0", + "aws-smithy-http-tower 0.38.0", + "aws-smithy-types 0.38.0", "bytes", - "fastrand", + "fastrand 1.9.0", "http", "http-body", "hyper", @@ -582,13 +608,33 @@ dependencies = [ "tracing", ] +[[package]] +name = "aws-smithy-client" +version = "0.56.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c27b2756264c82f830a91cb4d2d485b2d19ad5bea476d9a966e03d27f27ba59a" +dependencies = [ + "aws-smithy-async 0.56.1", + "aws-smithy-http 0.56.1", + "aws-smithy-http-tower 0.56.1", + "aws-smithy-types 0.56.1", + "bytes", + "fastrand 2.0.0", + "http", + "http-body", + "pin-project-lite", + "tokio", + "tower", + "tracing", +] + [[package]] name = "aws-smithy-eventstream" version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f972226c639e0dc1eca2cb0220c1b5799e2bfc62eda37845b662c5d0cb972371" dependencies = [ - "aws-smithy-types", + "aws-smithy-types 0.38.0", "bytes", "crc32fast", ] @@ -600,7 +646,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12c787e24b757634453a60ff05948aa1b450f5b3a7a2094f22acff8a5022635b" dependencies = [ "aws-smithy-eventstream", - "aws-smithy-types", + "aws-smithy-types 0.38.0", "bytes", "bytes-utils", "futures-core", @@ -614,13 +660,33 @@ dependencies = [ "tracing", ] +[[package]] +name = "aws-smithy-http" +version = "0.56.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54cdcf365d8eee60686885f750a34c190e513677db58bbc466c44c588abf4199" +dependencies = [ + "aws-smithy-types 0.56.1", + "bytes", + "bytes-utils", + "futures-core", + "http", + "http-body", + "hyper", + "once_cell", + "percent-encoding", + "pin-project-lite", + "pin-utils", + "tracing", +] + [[package]] name = "aws-smithy-http-tower" version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64f80a2c56fc09fc9a2da3c63f286ec2a89465433219f8165e14e522283a5eb8" dependencies = [ - "aws-smithy-http", + "aws-smithy-http 0.38.0", "bytes", "http", "http-body", @@ -629,6 +695,22 @@ dependencies = [ "tracing", ] +[[package]] +name = "aws-smithy-http-tower" +version = "0.56.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "822de399d0ce62829a69dfa8c5cd08efdbe61a7426b953e2268f8b8b52a607bd" +dependencies = [ + "aws-smithy-http 0.56.1", + "aws-smithy-types 0.56.1", + "bytes", + "http", + "http-body", + "pin-project-lite", + "tower", + "tracing", +] + [[package]] name = "aws-smithy-types" version = "0.38.0" @@ -641,6 +723,20 @@ dependencies = [ "time 0.3.21", ] +[[package]] +name = "aws-smithy-types" +version = "0.56.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d90dbc8da2f6be461fa3c1906b20af8f79d14968fe47f2b7d29d086f62a51728" +dependencies = [ + "base64-simd", + "itoa", + "num-integer", + "ryu", + "serde", + "time 0.3.21", +] + [[package]] name = "aws-smithy-xml" version = "0.38.0" @@ -657,14 +753,30 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b111a0d144e1c570675358d2fae7eb5ddf9010d9db63142fe3bb80353ff65f38" dependencies = [ - "aws-smithy-async", - "aws-smithy-client", - "aws-smithy-types", + "aws-smithy-async 0.38.0", + "aws-smithy-client 0.38.0", + "aws-smithy-types 0.38.0", "rustc_version", "tracing", "zeroize", ] +[[package]] +name = "aws-types" +version = "0.56.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85aa0451bf8af1bf22a4f028d5d28054507a14be43cb8ac0597a8471fba9edfe" +dependencies = [ + "aws-credential-types", + "aws-smithy-async 0.56.1", + "aws-smithy-client 0.56.1", + "aws-smithy-http 0.56.1", + "aws-smithy-types 0.56.1", + "http", + "rustc_version", + "tracing", +] + [[package]] name = "axum" version = "0.6.18" @@ -735,6 +847,16 @@ version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" +[[package]] +name = "base64-simd" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" +dependencies = [ + "outref", + "vsimd", +] + [[package]] name = "bb8" version = "0.8.0" @@ -1168,7 +1290,7 @@ dependencies = [ "anyhow", "async-priority-channel", "aws-sdk-s3", - "aws-types", + "aws-types 0.56.1", "axum", "base64 0.21.2", "cargo_metadata", @@ -1610,6 +1732,12 @@ dependencies = [ "instant", ] +[[package]] +name = "fastrand" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" + [[package]] name = "filetime" version = "0.2.21" @@ -1999,7 +2127,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c10b69beac219acb8df673187a1f07dde2d74092f974fb3f9eb385aeb667c909" dependencies = [ - "fastrand", + "fastrand 1.9.0", ] [[package]] @@ -2537,7 +2665,7 @@ dependencies = [ "base64 0.21.2", "email-encoding", "email_address", - "fastrand", + "fastrand 1.9.0", "futures-util", "hostname", "httpdate", @@ -2948,6 +3076,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" +[[package]] +name = "outref" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" + [[package]] name = "parking_lot" version = "0.12.1" @@ -4020,7 +4154,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" dependencies = [ "cfg-if", - "fastrand", + "fastrand 1.9.0", "redox_syscall 0.3.5", "rustix", "windows-sys 0.45.0", @@ -4710,6 +4844,12 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" +[[package]] +name = "vsimd" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" + [[package]] name = "walkdir" version = "2.3.3" diff --git a/create-rust-app/Cargo.toml b/create-rust-app/Cargo.toml index 8e39fbe3..b5ece408 100644 --- a/create-rust-app/Cargo.toml +++ b/create-rust-app/Cargo.toml @@ -68,7 +68,7 @@ cargo_toml = { optional = true, version = "0.15.2" } # plugin_storage # aws-config = { optional = true, version = "0.14.0" } -aws-types = { optional = true, version = "0.8.0" } +aws-types = { optional = true, version = "0.56.1" } # aws-endpoint = { optional = true, version = "0.14.0" } aws-sdk-s3 = { optional = true, version = "0.8.0" } http = { optional = true, version = "0.2.9" }