Skip to main content

lockout/
lib.rs

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