Skip to content

Commit b2ba3ea

Browse files
aws-sdk-rust-cilandonxjamesZelda Hesslerdavid-perez
committed
[smithy-rs] Rollup of 3 commits
Includes commits: b583a2f1 Fix request `Content-Type` header checking in servers (#3690) 217af482 Clean up dependency usage for `aws-types` crate (#3704) a8575bb2 Updating partition to pass `implicitGlobalRegion` (#3705) Co-authored-by: Landon James <[email protected]> Co-authored-by: Zelda Hessler <[email protected]> Co-authored-by: david-perez <[email protected]>
1 parent 592396b commit b2ba3ea

File tree

789 files changed

+10787
-2715
lines changed

Some content is hidden

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

789 files changed

+10787
-2715
lines changed

examples/cross_service/detect_labels/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ aws-sdk-dynamodb= { version = "1.36.0", path = "../../../sdk/dynamodb" }
1212
aws-sdk-rekognition= { version = "1.35.0", path = "../../../sdk/rekognition" }
1313
aws-sdk-s3= { version = "1.38.0", path = "../../../sdk/s3" }
1414
aws-smithy-types= { version = "1.2.0", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }
15-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
15+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
1616

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

examples/examples/auto-scaling/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tokio-stream = "0.1.14"
1313
aws-config= { version = "1.5.2", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1414
aws-sdk-autoscaling= { version = "1.34.0", path = "../../../sdk/autoscaling" }
1515
aws-sdk-ec2= { version = "1.53.0", path = "../../../sdk/ec2" }
16-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
16+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
1717

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

examples/examples/autoscalingplans/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
[dependencies]
1010
aws-sdk-autoscalingplans= { version = "1.33.0", path = "../../../sdk/autoscalingplans" }
1111
aws-config= { version = "1.5.2", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
12-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
12+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
1313

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

examples/examples/cloudwatchlogs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async-recursion = "1.0.5"
1313
futures = "0.3.30"
1414
aws-config= { version = "1.5.2", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1515
aws-sdk-cloudwatchlogs= { version = "1.36.0", path = "../../../sdk/cloudwatchlogs", features = ["test-util"] }
16-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
16+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
1717

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

examples/examples/ec2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tracing = "0.1.40"
1111
aws-smithy-runtime-api= { version = "1.7.0", path = "../../../sdk/aws-smithy-runtime-api" }
1212
aws-config= { version = "1.5.2", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1313
aws-sdk-ec2= { version = "1.53.0", path = "../../../sdk/ec2" }
14-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
14+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
1515

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

examples/examples/ecr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
[dependencies]
1010
aws-config= { version = "1.5.2", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1111
aws-sdk-ecr= { version = "1.33.0", path = "../../../sdk/ecr" }
12-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
12+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
1313

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

examples/examples/eks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
[dependencies]
1010
aws-config= { version = "1.5.2", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1111
aws-sdk-eks= { version = "1.36.0", path = "../../../sdk/eks" }
12-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
12+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
1313

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

examples/examples/glue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ aws-sdk-glue= { version = "1.43.0", path = "../../../sdk/glue" }
2323
aws-sdk-s3= { version = "1.38.0", path = "../../../sdk/s3" }
2424
aws-http= { version = "0.60.5", path = "../../../sdk/aws-http" }
2525
aws-smithy-types= { version = "1.2.0", path = "../../../sdk/aws-smithy-types" }
26-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
26+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
2727

2828
[dependencies.tokio]
2929
version = "1.20.1"

examples/examples/greengrassv2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
[dependencies]
1010
aws-config= { version = "1.5.2", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1111
aws-sdk-greengrassv2= { version = "1.34.0", path = "../../../sdk/greengrassv2" }
12-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
12+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
1313

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

examples/examples/iot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
[dependencies]
1010
aws-config= { version = "1.5.2", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1111
aws-sdk-iot= { version = "1.36.0", path = "../../../sdk/iot" }
12-
aws-types= { version = "1.3.1", path = "../../../sdk/aws-types" }
12+
aws-types= { version = "1.3.2", path = "../../../sdk/aws-types" }
1313

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

0 commit comments

Comments
 (0)