-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update aws-sdk to 1 #736
Update aws-sdk to 1 #736
Conversation
dependencies = [ | ||
"aws-smithy-types", | ||
"urlencoding", | ||
] | ||
|
||
[[package]] | ||
name = "aws-smithy-runtime" | ||
version = "0.57.2" | ||
version = "1.1.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be 1.0.3
to avoid pulling in two versions of aws-smithy-http
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only one major version will be allowed anyway, so a distinction between "1.1" and "1.0" is not meaningful (the lock file will not be consulted when using a lib from an external project). Not sure if I'm missing something.
262cad4
to
000ef5d
Compare
tough-kms/Cargo.toml
Outdated
aws-smithy-http = "0.57" | ||
aws-smithy-types = "0.57" | ||
aws-smithy-runtime = {version = "1.0", features = ["test-util"]} | ||
aws-smithy-types = "1.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we make types "1.0" too and make sure aws-smithy-runtime-api
and aws-smithy-async
are also 1.0.3? (not sure what happens if we have mixed versions)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should make these say "1"
, not "1.1"
.
tough-kms/Cargo.toml
Outdated
@@ -16,16 +16,15 @@ aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-kms/rustls"] | |||
[dependencies] | |||
tough = { version = "0.16", path = "../tough", features = ["http"] } | |||
ring = { version = "0.17", features = ["std"] } | |||
aws-sdk-kms = "0.36" | |||
aws-config = "0.57" | |||
aws-sdk-kms = { version = "1.4", features = ["behavior-version-latest"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aws-sdk-kms = { version = "1.4", features = ["behavior-version-latest"] } | |
aws-sdk-kms = { version = "1", features = ["behavior-version-latest"] } |
tough-kms/Cargo.toml
Outdated
aws-sdk-kms = "0.36" | ||
aws-config = "0.57" | ||
aws-sdk-kms = { version = "1.4", features = ["behavior-version-latest"] } | ||
aws-config = { version = "1.0", features = ["behavior-version-latest"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aws-config = { version = "1.0", features = ["behavior-version-latest"] } | |
aws-config = { version = "1", features = ["behavior-version-latest"] } |
tough-kms/Cargo.toml
Outdated
aws-smithy-runtime = {version = "0.57", features = ["test-util"]} | ||
aws-smithy-http = "0.57" | ||
aws-smithy-types = "0.57" | ||
aws-smithy-runtime = {version = "1.0", features = ["test-util"]} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aws-smithy-runtime = {version = "1.0", features = ["test-util"]} | |
aws-smithy-runtime = {version = "1", features = ["test-util"]} |
tough-kms/Cargo.toml
Outdated
aws-smithy-http = "0.57" | ||
aws-smithy-types = "0.57" | ||
aws-smithy-runtime = {version = "1.0", features = ["test-util"]} | ||
aws-smithy-types = "1.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aws-smithy-types = "1.1" | |
aws-smithy-types = "1" |
tough-ssm/Cargo.toml
Outdated
@@ -15,7 +15,7 @@ aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-ssm/rustls"] | |||
|
|||
[dependencies] | |||
tough = { version = "0.16", path = "../tough", features = ["http"] } | |||
aws-sdk-ssm = "0.36" | |||
aws-config = "0.57" | |||
aws-sdk-ssm = "1.4" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aws-sdk-ssm = "1.4" | |
aws-sdk-ssm = "1" |
tough-ssm/Cargo.toml
Outdated
aws-sdk-ssm = "0.36" | ||
aws-config = "0.57" | ||
aws-sdk-ssm = "1.4" | ||
aws-config = { version = "1.0", features = ["behavior-version-latest"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aws-config = { version = "1.0", features = ["behavior-version-latest"] } | |
aws-config = { version = "1", features = ["behavior-version-latest"] } |
tuftool/Cargo.toml
Outdated
aws-config = { version = "1.0", features = ["behavior-version-latest"] } | ||
aws-sdk-kms = "1.4" | ||
aws-sdk-ssm = "1.4" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aws-config = { version = "1.0", features = ["behavior-version-latest"] } | |
aws-sdk-kms = "1.4" | |
aws-sdk-ssm = "1.4" | |
aws-config = { version = "1", features = ["behavior-version-latest"] } | |
aws-sdk-kms = "1" | |
aws-sdk-ssm = "1" |
000ef5d
to
155f8a8
Compare
^ Updated aws-sdk dependencies to
to update |
Superseded by #751 |
Issue #, if available:
Description of changes:
Updates the AWS SDK for rust to
1
.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.