//! Write-Ahead Log (WAL) for durability and crash recovery.
//!
//! The WAL records every state transition in the execution of a trace.
//! On crash, the WAL is replayed to recover the state of in-flight traces.
//!
//! # Record Format
//!
//! Each WAL record has the following structure:
//! ```text
//! ┌─────────┬────────┬───────┬──────────┬──────────┬─────────┐
//! │ Length │ CRC32 │ Type │ TraceId │ NodeId │ Payload │
//! │ (4 B) │ (4 B) │ (1 B) │ (16 B) │ (4 B) │ (var) │
//! └─────────┴────────┴───────┴──────────┴──────────┴─────────┘
//! ```
pub use ;
pub use ;