magic_orb/lib.rs
1//! Implementation of **thread-safe**, **overwrite**, **heap-stored**, **fix-sized**, **locking** `Ring buffer`
2//!
3//! Docs will be later, sorry
4
5#![cfg_attr(not(feature = "not_nightly"), feature(sync_unsafe_cell))]
6// #![warn(missing_docs)]
7
8#[cfg(feature = "not_nightly")]
9mod sync_unsafe_cell;
10
11pub mod magic_orb;
12pub use magic_orb::MagicOrb;