Commit d814e4f3 authored by AWS SDK Rust Bot's avatar AWS SDK Rust Bot
Browse files

[smithy-rs] Rollup of 8 commits



Includes commits:
  299f6ae1 Revert tilde version requirements for runtime crates (#3122)
  09d83d2b Grant the lambda execution role access to the MRAP bucket (#3123)
  8ad54551 Merge branch 'smithy-rs-release-0.57.x' of github.com:awslabs/smithy-rs into merge-back
  d976a311 Merge 0.57.x back into main (#3128)
  722c141f Fix smithy types docs (#3120)
  3ad93c85 Merge main into 0.57 (#3132)
  bb91840f Upgrade the smithy-rs runtime crates version to 0.57.1
  a23cf980 Update changelog

Co-authored-by: default avatarAWS SDK Rust Bot <97246200+aws-sdk-rust-ci@users.noreply.github.com>
Co-authored-by: default avatarAWS SDK Rust Bot <aws-sdk-rust-primary@amazon.com>
Co-authored-by: default avatarRussell Cohen <rcoh@amazon.com>
Co-authored-by: default avatarysaito1001 <awsaito@amazon.com>
parent 6b29197d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ The SDK provides one crate per AWS service. You must add [Tokio](https://crates.

    ```toml
    [dependencies]
    aws-config = "0.56.1"
    aws-config = "0.57.1"
    aws-sdk-dynamodb = "0.35.0"
    tokio = { version = "1", features = ["full"] }
    ```
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
aws-sdk-rekognition= { version = "0.35.0", path = "../../../sdk/rekognition" }
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }

+2 −2
Original line number Diff line number Diff line
@@ -7,11 +7,11 @@ publish = false

[dependencies]
kamadak-exif = "0.5.4"
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
aws-sdk-dynamodb= { version = "0.35.0", path = "../../../sdk/dynamodb" }
aws-sdk-rekognition= { version = "0.35.0", path = "../../../sdk/rekognition" }
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }
aws-types= { version = "0.56.1", path = "../../../sdk/aws-types" }
aws-types= { version = "0.57.1", path = "../../../sdk/aws-types" }

[dependencies.tokio]
version = "1.20.1"
+4 −4
Original line number Diff line number Diff line
@@ -30,14 +30,14 @@ streaming-zip = "0.5.0"
tempfile = "3.5.0"
tokio-stream = "0.1.12"
tracing = "0.1.37"
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
aws-sdk-dynamodb= { version = "0.35.0", path = "../../../sdk/dynamodb" }
aws-sdk-rekognition= { version = "0.35.0", path = "../../../sdk/rekognition" }
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }
aws-sdk-sns= { version = "0.35.0", path = "../../../sdk/sns" }
aws-smithy-client= { version = "0.56.1", path = "../../../sdk/aws-smithy-client", features = ["test-util"] }
aws-smithy-http= { version = "0.56.1", path = "../../../sdk/aws-smithy-http" }
aws-smithy-types-convert= { version = "0.56.1", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }
aws-smithy-client= { version = "0.57.1", path = "../../../sdk/aws-smithy-client", features = ["test-util"] }
aws-smithy-http= { version = "0.57.1", path = "../../../sdk/aws-smithy-http" }
aws-smithy-types-convert= { version = "0.57.1", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }

[dependencies.aws_lambda_events]
version = "0.10.0"
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ publish = false

[dependencies]
tracing = "0.1.37"
aws-config= { version = "0.56.1", path = "../../../../sdk/aws-config" }
aws-config= { version = "0.57.1", path = "../../../../sdk/aws-config" }
aws-sdk-dynamodb= { version = "0.35.0", path = "../../../../sdk/dynamodb" }
aws-sdk-rekognition= { version = "0.35.0", path = "../../../../sdk/rekognition" }

Loading