[package] name = "ccl-crossbeam-epoch" # When publishing a new version: # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-epoch-X.Y.Z" git tag version = "0.7.4" authors = ["The Crossbeam Project Developers"] license = "MIT/Apache-2.0" readme = "README.md" repository = "https://gitlab.nebulanet.cc/xacrimon/ccl" homepage = "https://gitlab.nebulanet.cc/xacrimon/ccl" documentation = "https://docs.rs/crossbeam-epoch" description = "Epoch-based garbage collection" keywords = ["lock-free", "rcu", "atomic", "garbage"] categories = ["concurrency", "memory-management", "no-std"] [features] default = ["std"] nightly = ["crossbeam-utils/nightly", "arrayvec/use_union"] std = ["crossbeam-utils/std", "lazy_static"] sanitize = [] # Makes it more likely to trigger any potential data races. [dependencies] cfg-if = "0.1.9" memoffset = "0.5.1" crossbeam-utils = "0.6.6" [dependencies.arrayvec] version = "0.4.11" default-features = false [dependencies.lazy_static] version = "1.3.0" optional = true [dependencies.scopeguard] version = "1.0.0" default-features = false [dev-dependencies] rand = "0.7.0"