atom_box 0.2.1

A safe idiomatic Rust implementation of Atomic Box using hazard pointers
Documentation
1
2
3
4
5
6
fn main() {
    // Enable "nightly" cfg if the current compiler is nightly.
    if rustc_version::version_meta().unwrap().channel == rustc_version::Channel::Nightly {
        println!("cargo:rustc-cfg=nightly");
    }
}