nolock 0.2.3

A collection of Lock-Free Datastructures
Documentation
#![deny(missing_docs)]
#![warn(rust_2018_idioms, missing_debug_implementations)]
//! This crate provides a set of Lock-Free algorithms and Datastructures
//!
//! # Feature-Flags
//! * `queues`: Enables all the Queues
//! * `async`: Enables all the Async-Version of the Algorithms/Datastructures
//! * `full`: Enables all the Feature-Flags
//!
//! # Experimental-Feature-Flags
//! * `hash_trie`: Enables the Hash-Trie-Map implementation
//! * `hazard_ptr`: Enables the Hazard-Ptr implementation

#[cfg(feature = "hash_trie")]
pub mod hash_trie;
#[cfg(feature = "hazard_ptr")]
pub mod hazard_ptr;
#[cfg(feature = "queues")]
pub mod queues;