commonware_storage/lib.rs
1//! Persist and retrieve data from an abstract store.
2//!
3//! # Status
4//!
5//! `commonware-storage` is **ALPHA** software and is not yet recommended for production use. Developers should
6//! expect breaking changes and occasional instability.
7
8#![doc(
9 html_logo_url = "https://commonware.xyz/imgs/rustdoc_logo.svg",
10 html_favicon_url = "https://commonware.xyz/favicon.ico"
11)]
12
13pub mod adb;
14pub mod archive;
15pub mod bmt;
16pub mod cache;
17pub mod freezer;
18pub mod index;
19pub mod journal;
20pub mod metadata;
21pub mod mmr;
22pub mod ordinal;
23pub mod rmap;
24pub mod store;
25pub mod translator;