1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#![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;