Skip to content

v7.5.0

Compare
Choose a tag to compare
@yoshuawuyts yoshuawuyts released this 11 Mar 13:38
· 109 commits to main since this release
ac90582

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

New Contributors

Full Changelog: v7.4.3...v7.5.0