//! A crash-safe key-value store using the write-ahead log.
//!
//! Requires the `durability` feature, which logs every write to a `wal-db`
//! write-ahead log and `fsync`s it before the call returns. Run with:
//!
//! ```sh
//! cargo run --example durable_store --features durability
//! ```
use Lsm;