Skip to content

Commit 4937dd6

Browse files
taiki-ecramertj
authored andcommitted
Remove futures-channel dependency from futures-executor
1 parent e24b97a commit 4937dd6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

futures-executor/Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,13 @@ Executors for asynchronous tasks based on the futures-rs library.
1515
name = "futures_executor"
1616

1717
[features]
18-
std = ["num_cpus", "futures-core-preview/std", "futures-util-preview/std", "futures-channel-preview/std"]
1918
default = ["std"]
19+
std = ["futures-core-preview/std", "futures-util-preview/std", "num_cpus"]
2020

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

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

0 commit comments

Comments
 (0)