Skip to content

Commit 3b61e78

Browse files
[smithy-rs] Rollup of 3 commits
Includes commits: bdec1a23 change default HTTPS client to hyper1 (#4040) 5b7b6a55 Update changelog 499a9d47 Synchronize the SDK lockfile Co-authored-by: AWS SDK Rust Bot <[email protected]> Co-authored-by: Aaron Todd <[email protected]>
1 parent 20188d8 commit 3b61e78

File tree

655 files changed

+10695
-8104
lines changed

Some content is hidden

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

655 files changed

+10695
-8104
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ members = [
6060
"sdk/aws-smithy-experimental",
6161
"sdk/aws-smithy-http",
6262
"sdk/aws-smithy-http-auth",
63+
"sdk/aws-smithy-http-client",
6364
"sdk/aws-smithy-http-tower",
6465
"sdk/aws-smithy-json",
6566
"sdk/aws-smithy-mocks-experimental",

README.md

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

2525
```toml
2626
[dependencies]
27-
aws-config = { version= "1.5.18", features = ["behavior-version-latest"] }
27+
aws-config = { version= "1.6.0", features = ["behavior-version-latest"] }
2828
aws-sdk-dynamodb = "1.68.0"
2929
tokio = { version = "1", features = ["full"] }
3030
```

examples/cross_service/detect_faces/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ edition = "2021"
66
publish = false
77

88
[dependencies]
9-
aws-config= { version = "1.5.18", path = "../../../sdk/aws-config" }
9+
aws-config= { version = "1.6.0", path = "../../../sdk/aws-config" }
1010
aws-sdk-rekognition= { version = "1.65.0", path = "../../../sdk/rekognition" }
1111
aws-sdk-s3= { version = "1.79.0", path = "../../../sdk/s3" }
12-
aws-smithy-types= { version = "1.2.13", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }
12+
aws-smithy-types= { version = "1.3.0", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }
1313

1414
[dependencies.tokio]
1515
version = "1.20.1"

examples/cross_service/detect_labels/Cargo.toml

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

88
[dependencies]
99
kamadak-exif = "0.5.4"
10-
aws-config= { version = "1.5.18", path = "../../../sdk/aws-config" }
10+
aws-config= { version = "1.6.0", path = "../../../sdk/aws-config" }
1111
aws-sdk-dynamodb= { version = "1.68.0", path = "../../../sdk/dynamodb" }
1212
aws-sdk-rekognition= { version = "1.65.0", path = "../../../sdk/rekognition" }
1313
aws-sdk-s3= { version = "1.79.0", path = "../../../sdk/s3" }
14-
aws-smithy-types= { version = "1.2.13", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }
15-
aws-types= { version = "1.3.5", path = "../../../sdk/aws-types" }
14+
aws-smithy-types= { version = "1.3.0", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }
15+
aws-types= { version = "1.3.6", path = "../../../sdk/aws-types" }
1616

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

examples/cross_service/photo_asset_management/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ 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 = "1.5.18", path = "../../../sdk/aws-config" }
33+
aws-config= { version = "1.6.0", path = "../../../sdk/aws-config" }
3434
aws-sdk-dynamodb= { version = "1.68.0", path = "../../../sdk/dynamodb" }
3535
aws-sdk-rekognition= { version = "1.65.0", path = "../../../sdk/rekognition" }
3636
aws-sdk-s3= { version = "1.79.0", path = "../../../sdk/s3" }
3737
aws-sdk-sns= { version = "1.63.0", path = "../../../sdk/sns" }
38-
aws-smithy-runtime= { version = "1.7.8", path = "../../../sdk/aws-smithy-runtime" }
39-
aws-smithy-types-convert= { version = "0.60.8", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }
38+
aws-smithy-runtime= { version = "1.8.0", path = "../../../sdk/aws-smithy-runtime" }
39+
aws-smithy-types-convert= { version = "0.60.9", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }
4040

4141
[dependencies.aws_lambda_events]
4242
version = "0.11.1"

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 = "1.5.18", path = "../../../../sdk/aws-config" }
12+
aws-config= { version = "1.6.0", path = "../../../../sdk/aws-config" }
1313
aws-sdk-dynamodb= { version = "1.68.0", path = "../../../../sdk/dynamodb" }
1414
aws-sdk-rekognition= { version = "1.65.0", path = "../../../../sdk/rekognition" }
1515

examples/cross_service/rest_ses/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ 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 = "1.5.18", path = "../../../sdk/aws-config" }
32+
aws-config= { version = "1.6.0", path = "../../../sdk/aws-config" }
3333
aws-sdk-cloudwatchlogs= { version = "1.73.0", path = "../../../sdk/cloudwatchlogs" }
3434
aws-sdk-rdsdata= { version = "1.64.0", path = "../../../sdk/rdsdata" }
3535
aws-sdk-ses= { version = "1.65.0", path = "../../../sdk/ses" }
36-
aws-smithy-types= { version = "1.2.13", path = "../../../sdk/aws-smithy-types" }
37-
aws-smithy-runtime= { version = "1.7.8", path = "../../../sdk/aws-smithy-runtime" }
36+
aws-smithy-types= { version = "1.3.0", path = "../../../sdk/aws-smithy-types" }
37+
aws-smithy-runtime= { version = "1.8.0", path = "../../../sdk/aws-smithy-runtime" }
3838

3939
[dependencies.chrono]
4040
version = "0.4.22"
@@ -69,7 +69,7 @@ features = ["v4", "serde"]
6969
once_cell = "1.15.0"
7070
rand = "0.8.5"
7171
wiremock = "0.5.15"
72-
aws-smithy-runtime= { version = "1.7.8", path = "../../../sdk/aws-smithy-runtime" }
72+
aws-smithy-runtime= { version = "1.8.0", path = "../../../sdk/aws-smithy-runtime" }
7373

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

examples/cross_service/telephone/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ anyhow = "1"
1111
bytes = "1"
1212
reqwest = "0.11.4"
1313
serde_json = "1.0"
14-
aws-config= { version = "1.5.18", path = "../../../sdk/aws-config" }
14+
aws-config= { version = "1.6.0", path = "../../../sdk/aws-config" }
1515
aws-sdk-polly= { version = "1.65.0", path = "../../../sdk/polly" }
1616
aws-sdk-s3= { version = "1.79.0", path = "../../../sdk/s3" }
1717
aws-sdk-transcribe= { version = "1.65.0", path = "../../../sdk/transcribe" }
18-
aws-smithy-types= { version = "1.2.13", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }
18+
aws-smithy-types= { version = "1.3.0", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }
1919

2020
[dependencies.tokio]
2121
version = "1.20.1"

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 = "1.5.18", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
10+
aws-config= { version = "1.6.0", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1111
aws-sdk-apigateway= { version = "1.64.0", path = "../../../sdk/apigateway" }
12-
aws-smithy-types-convert= { version = "0.60.8", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }
12+
aws-smithy-types-convert= { version = "0.60.9", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }
1313

1414
[dependencies.clap]
1515
version = "4.4"

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 = "1.5.18", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
11+
aws-config= { version = "1.6.0", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1212
aws-sdk-apigatewaymanagement= { version = "1.62.0", path = "../../../sdk/apigatewaymanagement" }
1313

1414
[dependencies.tokio]

0 commit comments

Comments
 (0)