mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00
Fix unstable-futures feature flag propagation (#261)
This commit is contained in:
parent
2edc35a45d
commit
415a786049
@ -29,5 +29,8 @@ tokio-io = { version = "0.1.6", path = "../tokio-io" }
|
||||
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
||||
|
||||
[features]
|
||||
unstable-futures = ["futures2"]
|
||||
unstable-futures = [
|
||||
"futures2",
|
||||
"tokio-executor/unstable-futures",
|
||||
]
|
||||
default = []
|
||||
|
@ -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 = []
|
||||
|
@ -29,5 +29,8 @@ env_logger = "0.4"
|
||||
futures-cpupool = "0.1.7"
|
||||
|
||||
[features]
|
||||
unstable-futures = ["futures2", "tokio-executor/unstable-futures"]
|
||||
unstable-futures = [
|
||||
"futures2",
|
||||
"tokio-executor/unstable-futures",
|
||||
]
|
||||
default = []
|
||||
|
@ -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 = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user