lockout 0.2.0

A collection of lock-free utilities for Rust
Documentation
1
2
3
4
5
6
7
8
//! A collection of lock-free utilities for Rust.
//!
//! This crate is a workspace umbrella that re-exports:
//! - [`hazard`](https://docs.rs/lockout-hazard) — hazard pointers for safe memory reclamation
//! - [`channel`](https://docs.rs/lockout-channel) — lock-free MPMC channel

pub use lockout_channel as channel;
pub use lockout_hazard as hazard;