Cargo Features
[dependencies]
futures-concurrency = { version = "7.6.3", default-features = false, features = ["std", "alloc"] }
- default = std
-
The
stdfeature is set by default wheneverfutures-concurrencyis added withoutsomewhere in the dependency tree.default-features = false - std default = alloc
-
Enables std of futures-lite
- alloc std
-
Enables fixedbitset, slab and smallvec, alloc of futures-lite
Affects
collections::vec,future::future_group,futures-concurrency::concurrent_stream,stream::stream_group,stream_ext::StreamExt.co…