[package]
name = "crossbeam-utils"
version = "0.8.11"
edition = "2018"
rust-version = "1.38"
license = "MIT OR Apache-2.0"
repository = "https://github.com/crossbeam-rs/crossbeam"
homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils"
description = "Utilities for concurrent programming"
keywords = ["scoped", "thread", "atomic", "cache"]
categories = ["algorithms", "concurrency", "data-structures", "no-std"]
[features]
default = ["std"]
std = ["once_cell"]
nightly = []
[dependencies]
cfg-if = "1"
once_cell = { version = "1", optional = true }
[target.'cfg(crossbeam_loom)'.dependencies]
loom = { version = "0.5", optional = true }
[dev-dependencies]
rand = "0.8"
rustversion = "1"