lock_freedom 0.1.1

This crate provides concurrent data structures and a solution to the ABA problem as an alternative of hazard pointers
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "std")]
pub use crate::{
    channel::{mpmc, mpsc, spmc, spsc},
    map::Map,
    queue::Queue,
    set::Set,
    stack::Stack,
    tls::ThreadLocal,
};