commonware-storage 2026.7.0

Persist and retrieve data from an abstract store.
Documentation
use criterion::criterion_main;

mod append;
mod append_additional;
mod flush;
mod position_to_location;
mod prove_many_elements;
mod prove_single_element;
mod update;

criterion_main!(
    append::benches,
    append_additional::benches,
    flush::benches,
    position_to_location::benches,
    prove_many_elements::benches,
    prove_single_element::benches,
    update::benches,
);