From 9dce803e4a0d837561e883d8cd8e50ab7e481fd1 Mon Sep 17 00:00:00 2001 From: Dan Burkert Date: Mon, 7 Nov 2016 20:22:03 -0800 Subject: [PATCH] Depend directly on git version of futures-rs Cargo replace directives are not meant for libraries, since they are not transitively inherited by the application. --- Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b16e52b2f..def6519d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ the rest of the tokio crates. """ [dependencies] -futures = "0.1" +futures = { git = "https://github.com/alexcrichton/futures-rs" } log = "0.3" mio = "0.6" scoped-tls = "0.1.0" @@ -20,6 +20,3 @@ slab = "0.3" [dev-dependencies] env_logger = { version = "0.3", default-features = false } - -[replace] -'futures:0.1.3' = { git = "https://github.com/alexcrichton/futures-rs" }