wipe_on_fork/lib.rs
1mod once_cell;
2
3pub use once_cell::WipeOnForkOnceCell;
4
5mod lazy_cell;
6pub use lazy_cell::WipeOnForkLazyCell;
7
8mod once_lock;
9pub use once_lock::WipeOnForkOnceLock;
10mod lazy_lock;
11pub use lazy_lock::WipeOnForkLazyLock;
12
13mod once;
14pub use once::{WipeOnForkOnce, WIPE_ON_FORK_ONCE_INIT};
15
16mod utils;
17
18#[cfg(test)]
19mod tests;