From 72f1d372affe2a9fe1b1dd8ee56edfd5df6f1d7e Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Wed, 16 Aug 2017 18:40:53 -1000 Subject: [PATCH] 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. --- Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0ad6b91..ddf47de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Carl Lerche "] [dependencies] futures = "0.1" -tokio-io = "0.1" +tokio-io = "0.1.3" tokio-timer = "0.1" bytes = "0.4" 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" env_logger = "0.4.3" io-dump = { git = "https://github.com/carllerche/io-dump" } - -[replace] -"tokio-io:0.1.2" = { git = "https://github.com/tokio-rs/tokio-io" }