#![crate_type = "lib"] #![warn(missing_docs)] //! Synchronization primitives based on spinning #![no_std] #[cfg(test)] #[macro_use] extern crate std; pub use mutex::*; pub use once::*; pub use rw_lock::*; mod mutex; mod once; mod rw_lock;