hyperium / hyper-tls

Apache License 2.0
187 stars 96 forks source link

Update hyper to ^0.14.2 #88

Closed alpire closed 3 years ago

alpire commented 3 years ago

This PR allows users to use newer 0.14.x hyper releases. I wasn't entirely sure why the version was pegged to 0.14.2, but looking at the git log, it seems like it was to avoid using earlier 0.14.x versions.

sfackler commented 3 years ago

"0.14.2" is not a peg - it is exactly identical to "^0.14.2". "=0.14.2" would be a pin.

seanmonstar commented 3 years ago

In Rust, this is automatic. It's simply stating the minimum version of a dependency.

alpire commented 3 years ago

oops, apologies! Thanks for the explanation.