Skip to main content

tak_cli/
lib.rs

1//! tak — benchmark command-line programs and track their performance over time.
2//!
3//! Pre-v1: interfaces and behavior are not finalized and may change between releases.
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 artifact;
10pub mod backfill;
11pub mod compare;
12pub mod config;
13pub mod measure;
14pub mod notes;
15pub mod record;
16pub mod settings;