[package] name = "atom_box" version = "0.2.1" edition = "2018" authors = ["John Bell "] license = "MIT OR Apache-2.0" readme = "README.md" description = "A safe idiomatic Rust implementation of Atomic Box using hazard pointers" repository = "https://github.com/Johnabell/atom_box.git" keywords = ["atomic", "hazard", "pointers", "AtomicBox"] categories = ["concurrency", "rust-patterns", "memory-management"] [features] default = ["std"] std = [] bicephany = [] [build-dependencies] rustc_version = "0.4" [target.'cfg(loom)'.dependencies] loom = { version = "0.7.2", features = ["checkpoint"] } [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)', 'cfg(nightly)'] }