#![deny(missing_docs)]
#![allow(clippy::extra_unused_type_parameters)]
#![allow(clippy::declare_interior_mutable_const)]
mod storage;
pub use storage::*;
mod structures;
pub use structures::*;
mod disk;
pub use disk::{GuardedLandfill, Landfill, MappedFile, Substructure};
mod helpers;