Skip to content

Commit

Permalink
Remove futures-channel dependency from futures-executor
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e authored and cramertj committed Jul 15, 2019
1 parent e24b97a commit 4937dd6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions futures-executor/Cargo.toml
Expand Up @@ -15,15 +15,13 @@ Executors for asynchronous tasks based on the futures-rs library.
name = "futures_executor"

[features]
std = ["num_cpus", "futures-core-preview/std", "futures-util-preview/std", "futures-channel-preview/std"]
default = ["std"]
std = ["futures-core-preview/std", "futures-util-preview/std", "num_cpus"]

[dependencies]
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.17", default-features = false}
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.17", default-features = false}
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.17", default-features = false}
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.17", default-features = false }
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.17", default-features = false }
num_cpus = { version = "1.8.0", optional = true }

[dev-dependencies]
futures-preview = { path = "../futures", version = "=0.3.0-alpha.17" }
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.17" }

0 comments on commit 4937dd6

Please sign in to comment.