-
Notifications
You must be signed in to change notification settings - Fork 28
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
Prepare for v0.7.0 release #384
Conversation
061b954
to
9af17aa
Compare
Cargo.toml
Outdated
aws-sdk-ebs = { version = "1", default-features = false, features = ["rt-tokio", "default-https-client"] } | ||
aws-sdk-ec2 = { version = "1", default-features = false, features = ["rt-tokio", "default-https-client"] } |
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.
nit: features not in alphabetical order:
aws-sdk-ebs = { version = "1", default-features = false, features = ["rt-tokio", "default-https-client"] } | |
aws-sdk-ec2 = { version = "1", default-features = false, features = ["rt-tokio", "default-https-client"] } | |
aws-sdk-ebs = { version = "1", default-features = false, features = ["default-https-client", "rt-tokio"] } | |
aws-sdk-ec2 = { version = "1", default-features = false, features = ["default-https-client", "rt-tokio"] } |
5c6b9cd
to
db611b1
Compare
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.
Nice!
From what I can tell, ring
is present in Cargo.lock, but it's not actually used and is only shown due to this bug: rust-lang/cargo#10801
I verified this by running cargo tree
, which doesn't surface ring
at all.
After peeking a bit, I think we can upgrade Likewise, I think |
db611b1
to
3267e63
Compare
…dependencies - Update cargo-deny installation to use latest version - Remove legacy `rustls` feature that enabled the old TLS stack (hyper 0.14 + rustls 0.21 + ring) - Enable only `default-https-client` and `rt-tokio` to use the new default SDK configuration
3267e63
to
bd79856
Compare
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.