fparkan/vendor/once_cell/tests/it/main.rs
Valentin Popov 1b6a04ca55
Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
2024-01-08 01:21:28 +04:00

13 lines
297 B
Rust

mod unsync_once_cell;
#[cfg(any(feature = "std", feature = "critical-section"))]
mod sync_once_cell;
mod unsync_lazy;
#[cfg(any(feature = "std", feature = "critical-section"))]
mod sync_lazy;
#[cfg(feature = "race")]
mod race;
#[cfg(all(feature = "race", feature = "alloc"))]
mod race_once_box;