summaryrefslogtreecommitdiffstats
path: root/tokio-tcp
diff options
context:
space:
mode:
authorSam Rijs <srijs@airpost.net>2018-03-28 09:46:02 +1100
committerCarl Lerche <me@carllerche.com>2018-03-27 15:46:02 -0700
commit415a7860497eb9da62fcf6bb3c6d1d3771d3a3f5 (patch)
tree98e036b3e29f09f1a56e108565f4f16d984ad3c2 /tokio-tcp
parent2edc35a45d2967316f2c51b1d0c62eed32ee966c (diff)
Fix unstable-futures feature flag propagation (#261)
Diffstat (limited to 'tokio-tcp')
-rw-r--r--tokio-tcp/Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/tokio-tcp/Cargo.toml b/tokio-tcp/Cargo.toml
index 6e2ab31b..b8706737 100644
--- a/tokio-tcp/Cargo.toml
+++ b/tokio-tcp/Cargo.toml
@@ -31,5 +31,8 @@ futures2 = { version = "0.1", path = "../futures2", optional = true }
env_logger = { version = "0.4", default-features = false }
[features]
-unstable-futures = ["futures2"]
+unstable-futures = [
+ "futures2",
+ "tokio-reactor/unstable-futures",
+]
default = []