Simultaneous futures compat (#172)

This patch adds opt-in support for futures 0.2.
This commit is contained in:
Aaron Turon
2018-03-13 13:57:35 -07:00
committed by Carl Lerche
parent 5846b3fc2a
commit d304791c0e
27 changed files with 1045 additions and 105 deletions
+5
View File
@@ -19,8 +19,13 @@ crossbeam-deque = "0.3"
num_cpus = "1.2"
rand = "0.4"
log = "0.3"
futures2 = { version = "0.1", path = "../futures2", optional = true }
[dev-dependencies]
tokio-timer = "0.1"
env_logger = "0.4"
futures-cpupool = "0.1.7"
[features]
unstable-futures = ["futures2", "tokio-executor/unstable-futures"]
default = []