commonware-storage 2026.4.0

Persist and retrieve data from an abstract store.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Benchmark entry point for QMDB merkleize benchmarks.
//!
//! This is a separate binary from the other QMDB benchmarks so they don't block waiting on the
//! time-consuming setup of the QMDB init benchmarks.

use criterion::criterion_main;

#[path = "common.rs"]
#[allow(unused_imports, unused_macros, dead_code)]
mod common;
mod merkleize;

criterion_main!(merkleize::benches);