• Home
  • Raw
  • Download

Lines Matching +full:rust +full:- +full:executor

9 # issue against the rust-lang/cargo repository. If you're
18 …of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n"
19 homepage = "https://rust-lang.github.io/futures-rs"
24 license = "MIT OR Apache-2.0"
25 repository = "https://github.com/rust-lang/futures-rs"
27 all-features = true
28 rustdoc-args = ["--cfg", "docsrs"]
31 features = ["std", "async-await", "compat", "io-compat", "executor", "thread-pool"]
32 [dependencies.futures-channel]
35 default-features = false
37 [dependencies.futures-core]
39 default-features = false
41 [dependencies.futures-executor]
44 default-features = false
46 [dependencies.futures-io]
48 default-features = false
50 [dependencies.futures-sink]
52 default-features = false
54 [dependencies.futures-task]
56 default-features = false
58 [dependencies.futures-util]
61 default-features = false
62 [dev-dependencies.assert_matches]
65 [dev-dependencies.pin-project]
68 [dev-dependencies.pin-utils]
71 [dev-dependencies.static_assertions]
74 [dev-dependencies.tokio]
78 alloc = ["futures-core/alloc", "futures-task/alloc", "futures-sink/alloc", "futures-channel/alloc",…
79 async-await = ["futures-util/async-await", "futures-util/async-await-macro"]
80 bilock = ["futures-util/bilock"]
81-target-has-atomic = ["futures-core/cfg-target-has-atomic", "futures-task/cfg-target-has-atomic", …
82 compat = ["std", "futures-util/compat"]
83 default = ["std", "async-await", "executor"]
84 executor = ["std", "futures-executor/std"]
85 io-compat = ["compat", "futures-util/io-compat"]
86 read-initializer = ["futures-io/read-initializer", "futures-util/read-initializer"]
87 …"alloc", "futures-core/std", "futures-task/std", "futures-io/std", "futures-sink/std", "futures-ut…
88 thread-pool = ["executor", "futures-executor/thread-pool"]
89 unstable = ["futures-core/unstable", "futures-task/unstable", "futures-channel/unstable", "futures-
90 write-all-vectored = ["futures-util/write-all-vectored"]