Lines Matching +full:rust +full:- +full:executor
6 license = "MIT OR Apache-2.0"
9 repository = "https://github.com/rust-lang/futures-rs"
10 homepage = "https://rust-lang.github.io/futures-rs"
14 composability, and iterator-like interfaces.
19 futures-core = { path = "../futures-core", version = "0.3.13", default-features = false }
20 futures-task = { path = "../futures-task", version = "0.3.13", default-features = false }
21 futures-channel = { path = "../futures-channel", version = "0.3.13", default-features = false, feat…
22 futures-executor = { path = "../futures-executor", version = "0.3.13", default-features = false, op…
23 futures-io = { path = "../futures-io", version = "0.3.13", default-features = false }
24 futures-sink = { path = "../futures-sink", version = "0.3.13", default-features = false }
25 futures-util = { path = "../futures-util", version = "0.3.13", default-features = false, features =…
27 [dev-dependencies]
28 futures-executor = { path = "../futures-executor", features = ["thread-pool"] }
29 futures-test = { path = "../futures-test" }
31 pin-project = "1.0.1"
32 pin-utils = "0.1.0"
37 default = ["std", "async-await", "executor"]
38 …"alloc", "futures-core/std", "futures-task/std", "futures-io/std", "futures-sink/std", "futures-ut…
39 alloc = ["futures-core/alloc", "futures-task/alloc", "futures-sink/alloc", "futures-channel/alloc",…
40 async-await = ["futures-util/async-await", "futures-util/async-await-macro"]
41 compat = ["std", "futures-util/compat"]
42 io-compat = ["compat", "futures-util/io-compat"]
43 executor = ["std", "futures-executor/std"]
44 thread-pool = ["executor", "futures-executor/thread-pool"]
48 # `unstable` feature as an explicit opt-in to unstable API.
49 unstable = ["futures-core/unstable", "futures-task/unstable", "futures-channel/unstable", "futures-…
50 …-target-has-atomic = ["futures-core/cfg-target-has-atomic", "futures-task/cfg-target-has-atomic", …
51 bilock = ["futures-util/bilock"]
52 read-initializer = ["futures-io/read-initializer", "futures-util/read-initializer"]
53 write-all-vectored = ["futures-util/write-all-vectored"]
56 all-features = true
57 rustdoc-args = ["--cfg", "docsrs"]
60 features = ["std", "async-await", "compat", "io-compat", "executor", "thread-pool"]