-
Notifications
You must be signed in to change notification settings - Fork 117
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-boring: update to hyper 1.0.0 #107
hyper-boring: update to hyper 1.0.0 #107
Conversation
Thanks for doing this! We'll have to wait until hyper 1.0 is fully released to merge and release this, but as soon as that happens I'm happy to cut a release. |
39798e9
to
5185311
Compare
5185311
to
969cb33
Compare
Hyper 1.0 is out, so this is almost ready to go. However, hyper-util is broken until hyperium/hyper-util#47 is merged |
d8e829c
to
2579aaa
Compare
Cargo.toml
Outdated
hyper = { version = "0.14", default-features = false } | ||
http = "1.0" | ||
hyper = { version = "1.0", default-features = false } | ||
hyper-util = { git = "https://github.com/hyperium/hyper-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.
This adds a dependency on a not-released crate. Personally, I feel like the update to hyper 1.0 should wait for a release of hyper-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.
hyper-util is now published, moved to official release
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.
awesome!
2579aaa
to
423c260
Compare
423c260
to
5185311
Compare
Unfortunately I messed this PR up and needed to reopen as #194 |
superseded by #194 |
This PR upgrades hyper-boring to support hyper 1.0.0-rc.3. Most of this is by moving dependencies from hyper core to hyper-util, as much of the functionality we depend on has been removed from the core.