1//! Provides `LazyLock` 2 3pub use implementation::LazyLock; 4 5#[cfg(feature = "std")] 6use std::sync as implementation; 7 8#[cfg(not(feature = "std"))] 9mod implementation { 10 pub use spin::Lazy as LazyLock; 11} 12 13