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.3" 8authors = ["The Crossbeam Project Developers"] 9edition = "2018" 10license = "MIT OR Apache-2.0" 11repository = "https://github.com/crossbeam-rs/crossbeam" 12homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils" 13documentation = "https://docs.rs/crossbeam-utils" 14description = "Utilities for concurrent programming" 15keywords = ["scoped", "thread", "atomic", "cache"] 16categories = ["algorithms", "concurrency", "data-structures", "no-std"] 17 18[features] 19default = ["std"] 20 21# Enable to use APIs that require `std`. 22# This is enabled by default. 23std = ["lazy_static"] 24 25# Enable to use of unstable functionality. 26# This is disabled by default and requires recent nightly compiler. 27# Note that this is outside of the normal semver guarantees and minor versions 28# of crossbeam may make breaking changes to them at any time. 29nightly = [] 30 31[dependencies] 32cfg-if = "1" 33lazy_static = { version = "1.4.0", optional = true } 34 35# Enable the use of loom for concurrency testing. 36# 37# This configuration option is outside of the normal semver guarantees: minor 38# versions of crossbeam may make breaking changes to it at any time. 39[target.'cfg(crossbeam_loom)'.dependencies] 40loom = { version = "0.4", optional = true } 41 42[build-dependencies] 43autocfg = "1.0.0" 44 45[dev-dependencies] 46rand = "0.8" 47