Skip to content

Commit 06be5a1

Browse files
author
Michael Eden
authored
Only use specific git rev for hyper (#103)
This is a temporary strengthening of the hyper version because of a needed upstream change. It will be removed when it becomes a part of an official version.
1 parent 833c387 commit 06be5a1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ keywords = ["websocket", "websockets", "rfc6455"]
1717
license = "MIT"
1818

1919
[dependencies]
20-
hyper = { git = "https://github.com/hyperium/hyper.git", branch = "0.10.x" }
2120
unicase = "^1.0"
2221
url = "^1.0"
2322
rustc-serialize = "^0.3"
@@ -27,6 +26,11 @@ byteorder = "^1.0"
2726
sha1 = "^0.2"
2827
openssl = { version = "^0.9.10", optional = true }
2928

29+
[dependencies.hyper]
30+
git = "https://github.com/hyperium/hyper.git"
31+
branch = "0.10.x"
32+
rev = "78551dd040e2ab46e833af355c92fe87aa026244"
33+
3034
[features]
3135
default = ["ssl"]
3236
ssl = ["openssl"]

0 commit comments

Comments
 (0)