-
Notifications
You must be signed in to change notification settings - Fork 150
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
hyper-rustls v0.24.0 w/ rustls 0.21.0 + tokio-rustls 0.24.0 #199
Conversation
Nice! |
Rustls 0.21.0 was released. I will rebase this branch once tokio-rs/tls#137 lands so we can drop both cargo patches at once. |
538c6a2
to
76cda54
Compare
Should I bump the patch version (0.23.2 -> 0.23.3) in this branch? I'm not 100% sure how necessary it is to publish a cargo release after landing this if there were no changes made to the internals. |
rustls types appear in the public hyper-rustls API (for example, |
76cda54
to
048e340
Compare
That makes sense, thanks!
I rebased to remove the patch for I think this is ready for review now :-) |
webpki-roots 0.24.0 is out now, want to splice that into your first commit here? |
This commit updates hyper-rustls to use the freshly released rustls 0.21.0.work. We also use update to the recently released tokio-rustls v0.24.0 to match rustls versions there, and to webpki-roots 0.23.0.
The update to Rustls 0.21.0 was a semver incompatible bump, and since types from that crate are part of our public API we must also bump the hyper-rustls version accordingly.
048e340
to
6ec23cf
Compare
Done (but it was 0.23.0 fwiw). |
Description
This branch updates hyper-rustls to use a patch to track the yet-to-be-released 0.21.0 rustls work, both as a direct dependency and through an upgrade to tokio-rustls v0.24.0.
Remaining work