tak_cli/lib.rs
1//! tak — benchmark command-line programs and track their performance over time.
2//!
3//! Experimental. See README.md, which asks you to use hyperfine instead.
4//!
5//! Exposed as a library so the measurement and storage layers can be exercised
6//! by integration tests. `measure::instructions` in particular went a long time
7//! written-but-never-executed, which is exactly the failure this guards against.
8
9pub mod backfill;
10pub mod config;
11pub mod measure;
12pub mod notes;
13pub mod record;
14pub mod settings;