haste 0.1.0-alpha.2

A work-in-progress benchmarking crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;
use regex_lite::Regex;

#[derive(Parser)]
/// The haste benchmark runner.
pub(crate) struct Cli {
    /// Filter your benchmarks with the provided regex.
    pub(crate) filter: Option<Regex>,
    #[clap(long, hide(true))]
    bench: bool,
}