arc_malachitebft_wal/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! Write-Ahead Log (WAL) implementation
4
5mod file;
6mod storage;
7mod version;
8
9pub mod log;
10
11pub use file::{Log, LogEntry, LogIter};
12pub use storage::Storage;
13pub use version::Version;
14
15// For use in tests
16#[doc(hidden)]
17pub mod ext;
18
19// For use in tests
20#[doc(hidden)]
21pub use log::constants;