-
-
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
update to hyper v0.10 with separate openssl dependency #38
Conversation
@@ -12,17 +12,15 @@ license = "MIT" | |||
|
|||
[dependencies] | |||
flate2 = "0.2" | |||
hyperlocal = "0.2" | |||
hyperlocal = { git = "https://github.com/abronan/hyperlocal.git", branch = "update_hyper" } |
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.
Will update this dependency (which currently points to my fork) if a new version is tagged or to the master branch of the main repository :)
@@ -12,17 +12,15 @@ license = "MIT" | |||
|
|||
[dependencies] | |||
flate2 = "0.2" | |||
hyperlocal = "0.2" | |||
hyperlocal = "0.3" |
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.
Thanks for bumping the version! Updated :)
Going to merge this but before I cut the next release I may experiment with hyper native tls which supposedly works a bit more seamlessly. Thanks again for moving hyper upgrade process forward! |
Oh wait gh is telling me theres merge conflicts. Can you merge the latest and push. Happy to merge then |
Signed-off-by: Alexandre Beslic <[email protected]>
Whoops indeed, just rebased :) |
Thanks @abronan! |
@softprops Thanks to you for putting effort into the lib :) |
Hi,
This PR updates the
hyper
crate tov0.10
which removes the dependency toopenssl
. TLS support is added through thehyper-openssl
crate.This depends on softprops/hyperlocal#5 which also updates
hyperlocal
tov0.10
to avoid a clash withopenssl-sys
versions.Some context here: hyperium/hyper#985
Signed-off-by: Alexandre Beslic [email protected]