nospin 0.1.6

Rust crate containing an embedded version of a Mutex which can be used in `no_std` projects which are single-threaded.
Documentation
#![no_std]

#[cfg(feature = "lazy")]
pub mod lazy;

#[cfg(feature = "lazy")]
pub use lazy::Lazy;

#[cfg(feature = "mutex")]
pub mod mutex;

#[cfg(feature = "mutex")]
pub use mutex::Mutex;

#[cfg(feature = "once")]
pub mod once;

#[cfg(feature = "once")]
pub use once::Once;