//! Persistence layer.
//!
//! The engine talks to the [`Storage`] trait only. Two backends ship in-box:
//! [`FileStorage`] (checksummed, with selectable [`Durability`]) and
//! [`MemoryStorage`] (ephemeral). [`Cache`] is a write-through LRU that can wrap
//! either.
pub use Cache;
pub use ;