1//! Provides cell primitives. 2//! 3//! This is a drop-in replacement for `std::cell::SyncCell`/`std::cell::SyncUnsafeCell`. 4 5mod sync_cell; 6mod sync_unsafe_cell; 7 8pub use sync_cell::SyncCell; 9pub use sync_unsafe_cell::SyncUnsafeCell; 10 11