Fix build by upgrading tokio-io dependency to tokio-io 0.1.3. (#23)

tokio-io 0.1.3 has been published so the "replace" for tokio-io 0.1.2 is no longer useful and it breaks the build with some (but apparently not all) versions of Cargo.

Update the dependency to tokio-io 0.1.3 since that is the version that's what's been verified to work.
This commit is contained in:
Brian Smith
2017-08-16 18:40:53 -10:00
committed by Carl Lerche
parent de96b2f410
commit 72f1d372af

View File

@@ -5,7 +5,7 @@ authors = ["Carl Lerche <me@carllerche.com>"]
[dependencies] [dependencies]
futures = "0.1" futures = "0.1"
tokio-io = "0.1" tokio-io = "0.1.3"
tokio-timer = "0.1" tokio-timer = "0.1"
bytes = "0.4" bytes = "0.4"
http = { git = "https://github.com/carllerche/http", branch = "uri-try-from-parts" } http = { git = "https://github.com/carllerche/http", branch = "uri-try-from-parts" }
@@ -34,6 +34,3 @@ openssl = { version = "0.9.14", "features" = ["v102"] }
tokio-openssl = "0.1.3" tokio-openssl = "0.1.3"
env_logger = "0.4.3" env_logger = "0.4.3"
io-dump = { git = "https://github.com/carllerche/io-dump" } io-dump = { git = "https://github.com/carllerche/io-dump" }
[replace]
"tokio-io:0.1.2" = { git = "https://github.com/tokio-rs/tokio-io" }