Skip to main content

ember_persistence/
lib.rs

1//! ember-persistence: durability layer.
2//!
3//! Handles append-only file logging, point-in-time snapshots,
4//! and crash recovery.
5
6pub mod aof;
7#[cfg(feature = "encryption")]
8pub mod encryption;
9pub mod format;
10pub mod recovery;
11pub mod snapshot;