Skip to content

Commit

Permalink
Rust: Restrict clap dependency to 4.2.x to avoid MSRV update (#5330)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoh authored Aug 28, 2023
1 parent e9eaaa7 commit eececa5
Show file tree
Hide file tree
Showing 58 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
)
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
toolchain: 1.69
components: clippy, rustfmt
- uses: actions/checkout@v3
- name: Rust format
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/cross_service/detect_faces/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-rekognition = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-s3 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/cross_service/detect_labels/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ aws-sdk-rekognition = { git = "https://github.com/awslabs/aws-sdk-rust", branch
aws-sdk-s3 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
kamadak-exif = "0.5.4"
2 changes: 1 addition & 1 deletion rust_dev_preview/cross_service/telephone/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ tokio = { version = "1.20.1", features = ["full"] }
bytes = "1"
reqwest = "0.11.4"
serde_json = "1.0"
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/apigateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ aws-sdk-apigateway = { git = "https://github.com/awslabs/aws-sdk-rust", branch =
aws-smithy-types-convert = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = [
"convert-chrono",
] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1.20.1", features = ["full"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/apigatewaymanagement/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-apigatewaymanagement = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
http = "0.2.5"
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-applicationautoscaling = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/autoscaling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-autoscaling = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/autoscalingplans/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ aws-sdk-autoscalingplans = { git = "https://github.com/awslabs/aws-sdk-rust", br
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/batch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-batch = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/cloudformation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-cloudformation = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/cloudwatch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-cloudwatch = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/cloudwatchlogs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-cloudwatchlogs = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/cognitoidentity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ aws-smithy-types-convert = { git = "https://github.com/awslabs/aws-sdk-rust", br
"convert-chrono",
] }
chrono = "0.4"
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1.20.1", features = ["full"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ aws-sdk-cognitoidentityprovider = { git = "https://github.com/awslabs/aws-sdk-ru
aws-smithy-types-convert = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = [
"convert-chrono",
] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1.20.1", features = ["full"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/cognitosync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ aws-sdk-cognitosync = { git = "https://github.com/awslabs/aws-sdk-rust", branch
aws-smithy-types-convert = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = [
"convert-chrono",
] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1.20.1", features = ["full"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/concurrency/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
futures = "0.3.25"
tokio = { version = "1.20.1", features = ["full"] }
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/dynamodb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ sdk-examples-test-utils = { path = "../../test-utils" }
serde = {version = "1.0", features = ["derive"]}
serde_json = "1"
serde_dynamo = { version = "4", features = ["aws-sdk-dynamodb+0_22"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing = "0.1"
thiserror = "1.0"
tokio = { version = "1.20.1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/ebs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ aws-sdk-ec2 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
tokio = { version = "1.20.1", features = ["full"] }
base64 = "0.13.0"
sha2 = "0.9.5"
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/ec2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-ec2 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/ecr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-ecr = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/ecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-ecs = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/eks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-eks = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/firehose/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-firehose = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }

2 changes: 1 addition & 1 deletion rust_dev_preview/examples/globalaccelerator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-globalaccelerator = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
tokio-stream = "0.1.8"
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/glue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
tracing = "0.1.37"
async_once = "0.2.6"
lazy_static = "1.4.0"
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
thiserror = "1.0.37"
secrecy = "0.8.0"
uuid = { version = "1.2.1", features = ["v4"] }
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/greengrassv2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-greengrassv2 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.5", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/iam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ aws-sdk-s3 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-sts = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
sdk-examples-test-utils = { path = "../../test-utils" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
tower-service = "0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/iot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-iot = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/kinesis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-kinesis = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/kms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ aws-smithy-client = { git = "https://github.com/awslabs/aws-sdk-rust", branch =
] }
tokio = { version = "1.20.1", features = ["full"] }
base64 = "0.13.0"
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/lambda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ aws-sdk-lambda = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "ne
aws-sdk-s3 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tokio = { version = "1.20.1", features = ["full"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/logging/logger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ aws-sdk-dynamodb = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "
# snippet-start:[logging.rust.logger-cargo.toml-env_logger]
env_logger = "0.9.0"
# snippet-end:[logging.rust.logger-cargo.toml-env_logger]
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tokio = { version = "1.20.1", features = ["full"] }
# snippet-end:[logging.rust.logger-cargo.toml]
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/logging/tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "0.1.0"
[dependencies]
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-dynamodb = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tokio = { version = "1.20.1", features = ["full"] }
# snippet-start:[logging.rust.tracing-cargo.toml-tracing_subscriber]
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/medialive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-medialive = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/mediapackage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-mediapackage = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/polly/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-polly = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
bytes = "1"
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/qldb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ aws-sdk-qldb = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next
aws-sdk-qldbsession = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
tokio-stream = { version = "0.1.9", features = ["default"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/rds/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ version = "0.1.0"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-rds = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/rdsdata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ version = "0.1.0"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-rdsdata = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/route53/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-route53 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/s3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ http = "0.2.8"
http-body = "0.4.5"
md-5 = "0.10.1"
rand = "0.8.5"
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1.20.1", features = ["full"] }
tokio-stream = "0.1.8"
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/sagemaker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ aws-sdk-sagemaker = { git = "https://github.com/awslabs/aws-sdk-rust", branch =
aws-smithy-types-convert = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = [
"convert-chrono",
] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1.20.1", features = ["full"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/sdk-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-s3 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "4.2.1", features = ["derive"] }
clap = { version = "~4.2", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
lazy_static = "1.4.0"
async_once = "0.2.6"
Expand Down
Loading

0 comments on commit eececa5

Please sign in to comment.