1[package] 2name = "crossbeam-utils" 3# When publishing a new version: 4# - Update CHANGELOG.md 5# - Update README.md 6# - Create "crossbeam-utils-X.Y.Z" git tag 7version = "0.8.19" 8edition = "2021" 9rust-version = "1.60" 10license = "MIT OR Apache-2.0" 11repository = "https://github.com/crossbeam-rs/crossbeam" 12homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils" 13description = "Utilities for concurrent programming" 14keywords = ["scoped", "thread", "atomic", "cache"] 15categories = ["algorithms", "concurrency", "data-structures", "no-std"] 16 17[features] 18default = ["std"] 19 20# Enable to use APIs that require `std`. 21# This is enabled by default. 22std = [] 23 24# These features are no longer used. 25# TODO: remove in the next major version. 26# Enable to use of unstable functionality. 27# This is disabled by default and requires recent nightly compiler. 28# 29# NOTE: This feature is outside of the normal semver guarantees and minor or 30# patch versions of crossbeam may make breaking changes to them at any time. 31nightly = [] 32 33[dependencies] 34 35# Enable the use of loom for concurrency testing. 36# 37# NOTE: This feature is outside of the normal semver guarantees and minor or 38# patch versions of crossbeam may make breaking changes to them at any time. 39[target.'cfg(crossbeam_loom)'.dependencies] 40loom = { version = "0.7.1", optional = true } 41 42[dev-dependencies] 43rand = "0.8" 44