chainfold 0.2.0

event-sourced chain fold engine: total order, fork recovery, durable snapshots
Documentation
//! Durable snapshot storage: filesystem abstraction, manifest codec, and the store.

mod flusher;
mod manifest;
mod store;
mod vfs;

pub use flusher::{
    DurabilityToken,
    FlushError,
    Flusher,
};
pub use store::{
    Recovered,
    SnapshotStore,
    StoreConfig,
    StoreError,
};
pub use vfs::{
    RealVfs,
    Vfs,
};