vsdb_core 16.3.7

A std-collection-like database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod units;

// Custom main (instead of `criterion_main!`): the legacy dynamic
// budget must be exported before the first engine touch.
fn main() {
    units::legacy_budget::apply();
    units::basic_mapx_raw::benches();
    units::batch_write::benches();
    criterion::Criterion::default()
        .configure_from_args()
        .final_summary();
}