mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-07 00:00:08 +02:00
Fix unstable-futures feature flag propagation (#261)
This commit is contained in:
@@ -29,5 +29,8 @@ tokio-io = { version = "0.1.6", path = "../tokio-io" }
|
|||||||
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
unstable-futures = ["futures2"]
|
unstable-futures = [
|
||||||
|
"futures2",
|
||||||
|
"tokio-executor/unstable-futures",
|
||||||
|
]
|
||||||
default = []
|
default = []
|
||||||
|
|||||||
@@ -31,5 +31,8 @@ futures2 = { version = "0.1", path = "../futures2", optional = true }
|
|||||||
env_logger = { version = "0.4", default-features = false }
|
env_logger = { version = "0.4", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
unstable-futures = ["futures2"]
|
unstable-futures = [
|
||||||
|
"futures2",
|
||||||
|
"tokio-reactor/unstable-futures",
|
||||||
|
]
|
||||||
default = []
|
default = []
|
||||||
|
|||||||
@@ -29,5 +29,8 @@ env_logger = "0.4"
|
|||||||
futures-cpupool = "0.1.7"
|
futures-cpupool = "0.1.7"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
unstable-futures = ["futures2", "tokio-executor/unstable-futures"]
|
unstable-futures = [
|
||||||
|
"futures2",
|
||||||
|
"tokio-executor/unstable-futures",
|
||||||
|
]
|
||||||
default = []
|
default = []
|
||||||
|
|||||||
@@ -31,5 +31,8 @@ futures2 = { version = "0.1", path = "../futures2", optional = true }
|
|||||||
env_logger = { version = "0.4", default-features = false }
|
env_logger = { version = "0.4", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
unstable-futures = ["futures2"]
|
unstable-futures = [
|
||||||
|
"futures2",
|
||||||
|
"tokio-reactor/unstable-futures",
|
||||||
|
]
|
||||||
default = []
|
default = []
|
||||||
|
|||||||
Reference in New Issue
Block a user