Skip to content

Commit d814e4f

Browse files
aws-sdk-rust-circohysaito1001
committed
[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: AWS SDK Rust Bot <[email protected]> Co-authored-by: AWS SDK Rust Bot <[email protected]> Co-authored-by: Russell Cohen <[email protected]> Co-authored-by: ysaito1001 <[email protected]>
1 parent 6b29197 commit d814e4f

File tree

1,169 files changed

+6141
-6118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,169 files changed

+6141
-6118
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The SDK provides one crate per AWS service. You must add [Tokio](https://crates.
2525

2626
```toml
2727
[dependencies]
28-
aws-config = "0.56.1"
28+
aws-config = "0.57.1"
2929
aws-sdk-dynamodb = "0.35.0"
3030
tokio = { version = "1", features = ["full"] }
3131
```

examples/cross_service/detect_faces/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
publish = false
77

88
[dependencies]
9-
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
9+
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
1010
aws-sdk-rekognition= { version = "0.35.0", path = "../../../sdk/rekognition" }
1111
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }
1212

examples/cross_service/detect_labels/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ publish = false
77

88
[dependencies]
99
kamadak-exif = "0.5.4"
10-
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
10+
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
1111
aws-sdk-dynamodb= { version = "0.35.0", path = "../../../sdk/dynamodb" }
1212
aws-sdk-rekognition= { version = "0.35.0", path = "../../../sdk/rekognition" }
1313
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }
14-
aws-types= { version = "0.56.1", path = "../../../sdk/aws-types" }
14+
aws-types= { version = "0.57.1", path = "../../../sdk/aws-types" }
1515

1616
[dependencies.tokio]
1717
version = "1.20.1"

examples/cross_service/photo_asset_management/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ streaming-zip = "0.5.0"
3030
tempfile = "3.5.0"
3131
tokio-stream = "0.1.12"
3232
tracing = "0.1.37"
33-
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
33+
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
3434
aws-sdk-dynamodb= { version = "0.35.0", path = "../../../sdk/dynamodb" }
3535
aws-sdk-rekognition= { version = "0.35.0", path = "../../../sdk/rekognition" }
3636
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }
3737
aws-sdk-sns= { version = "0.35.0", path = "../../../sdk/sns" }
38-
aws-smithy-client= { version = "0.56.1", path = "../../../sdk/aws-smithy-client", features = ["test-util"] }
39-
aws-smithy-http= { version = "0.56.1", path = "../../../sdk/aws-smithy-http" }
40-
aws-smithy-types-convert= { version = "0.56.1", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }
38+
aws-smithy-client= { version = "0.57.1", path = "../../../sdk/aws-smithy-client", features = ["test-util"] }
39+
aws-smithy-http= { version = "0.57.1", path = "../../../sdk/aws-smithy-http" }
40+
aws-smithy-types-convert= { version = "0.57.1", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }
4141

4242
[dependencies.aws_lambda_events]
4343
version = "0.10.0"

examples/cross_service/photo_asset_management/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
tracing = "0.1.37"
12-
aws-config= { version = "0.56.1", path = "../../../../sdk/aws-config" }
12+
aws-config= { version = "0.57.1", path = "../../../../sdk/aws-config" }
1313
aws-sdk-dynamodb= { version = "0.35.0", path = "../../../../sdk/dynamodb" }
1414
aws-sdk-rekognition= { version = "0.35.0", path = "../../../../sdk/rekognition" }
1515

examples/cross_service/rest_ses/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ tracing-actix-web = "0.7.3"
2929
tracing-bunyan-formatter = "0.3.4"
3030
tracing-log = "0.1.3"
3131
xlsxwriter = "0.6.0"
32-
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
32+
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
3333
aws-sdk-cloudwatchlogs= { version = "0.35.0", path = "../../../sdk/cloudwatchlogs" }
3434
aws-sdk-rdsdata= { version = "0.35.0", path = "../../../sdk/rdsdata" }
3535
aws-sdk-ses= { version = "0.35.0", path = "../../../sdk/ses" }
@@ -67,8 +67,8 @@ features = ["v4", "serde"]
6767
once_cell = "1.15.0"
6868
rand = "0.8.5"
6969
wiremock = "0.5.15"
70-
aws-smithy-client= { version = "0.56.1", path = "../../../sdk/aws-smithy-client", features = ["test-util"] }
71-
aws-smithy-http= { version = "0.56.1", path = "../../../sdk/aws-smithy-http" }
70+
aws-smithy-client= { version = "0.57.1", path = "../../../sdk/aws-smithy-client", features = ["test-util"] }
71+
aws-smithy-http= { version = "0.57.1", path = "../../../sdk/aws-smithy-http" }
7272

7373
[dev-dependencies.fake]
7474
version = "2.5.0"

examples/cross_service/telephone/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ anyhow = "1"
1111
bytes = "1"
1212
reqwest = "0.11.4"
1313
serde_json = "1.0"
14-
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
14+
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
1515
aws-sdk-polly= { version = "0.35.0", path = "../../../sdk/polly" }
1616
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }
1717
aws-sdk-transcribe= { version = "0.35.0", path = "../../../sdk/transcribe" }

examples/examples/apigateway/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ publish = false
77

88
[dependencies]
99
thiserror = "1.0"
10-
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
10+
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
1111
aws-sdk-apigateway= { version = "0.35.0", path = "../../../sdk/apigateway" }
12-
aws-smithy-types-convert= { version = "0.56.1", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }
12+
aws-smithy-types-convert= { version = "0.57.1", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }
1313

1414
[dependencies.clap]
1515
version = "~4.2"

examples/examples/apigatewaymanagement/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88

99
[dependencies]
1010
http = "0.2.5"
11-
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
11+
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
1212
aws-sdk-apigatewaymanagement= { version = "0.35.0", path = "../../../sdk/apigatewaymanagement" }
1313

1414
[dependencies.tokio]

examples/examples/applicationautoscaling/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
publish = false
88

99
[dependencies]
10-
aws-config= { version = "0.56.1", path = "../../../sdk/aws-config" }
10+
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
1111
aws-sdk-applicationautoscaling= { version = "0.35.0", path = "../../../sdk/applicationautoscaling" }
1212

1313
[dependencies.tokio]

0 commit comments

Comments
 (0)