iroh_db_store/
lib.rs

1//! Transactional, rebuildable local metadata storage for iroh-db.
2
3#![forbid(unsafe_code)]
4
5mod blob;
6mod materialized;
7mod store;
8
9pub use blob::{BlobFuture, BlobStore, BlobStoreError};
10pub use materialized::{IndexValue, MaterializedError, MaterializedRecord, StoredRecord};
11pub use store::{ApplyOutcome, RecordHead, RecordHeadSet, SnapshotBaseline, Store, StoreError};