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 compare;
11pub mod config;
12pub mod measure;
13pub mod notes;
14pub mod record;
15pub mod settings;