tak-cli 0.0.3

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

pub mod backfill;
pub mod config;
pub mod measure;
pub mod notes;
pub mod record;
pub mod settings;