//! Low-level storage primitives for the append-only binary log.
//!
//! This module contains the binary log reader/writer, manifest management,
//! and advisory file locking. These are internal implementation details;
//! most users should interact through [`Mnemoria`](crate::Mnemoria) instead.
pub use FileLock;
pub use LogWriter;
pub use Manifest;