v7.5.0
This release adds support for no_std
and alloc
environments to futures-concurrency
. Starting this release (v7.5.0
) you can pass feature flags to your Cargo.toml
to select the right feature set for your environment:
[dependencies]
# std
futures-concurrency = "7.5.0"
# alloc
futures-concurrency = { version = "7.5.0", default-features = false, features = ["alloc"] }
# no_std
futures-concurrency = { version = "7.5.0", default-features = false }
What's Changed
- Use
Waker::clone_from
internally by @miguelraz in #161 - Implement
no_std
tests by @jmintb in #159 - Add
no_std
support by @alexmoon in #163
New Contributors
- @miguelraz made their first contribution in #161
- @jmintb made their first contribution in #159
- @alexmoon made their first contribution in #163
Full Changelog: v7.4.3...v7.5.0