gitextract_zf1w7bdv/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── CICD.yml ├── .gitignore ├── CHANGELOG.md ├── CITATION.cff ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── build.rs ├── doc/ │ ├── hyperfine.1 │ └── sponsors.md ├── scripts/ │ ├── README.md │ ├── advanced_statistics.py │ ├── plot_benchmark_comparison.py │ ├── plot_histogram.py │ ├── plot_parametrized.py │ ├── plot_progression.py │ ├── plot_whisker.py │ ├── ruff.toml │ └── welch_ttest.py ├── src/ │ ├── benchmark/ │ │ ├── benchmark_result.rs │ │ ├── executor.rs │ │ ├── mod.rs │ │ ├── relative_speed.rs │ │ ├── scheduler.rs │ │ └── timing_result.rs │ ├── cli.rs │ ├── command.rs │ ├── error.rs │ ├── export/ │ │ ├── asciidoc.rs │ │ ├── csv.rs │ │ ├── json.rs │ │ ├── markdown.rs │ │ ├── markup.rs │ │ ├── mod.rs │ │ ├── orgmode.rs │ │ └── tests.rs │ ├── main.rs │ ├── options.rs │ ├── outlier_detection.rs │ ├── output/ │ │ ├── format.rs │ │ ├── mod.rs │ │ ├── progress_bar.rs │ │ └── warnings.rs │ ├── parameter/ │ │ ├── mod.rs │ │ ├── range_step.rs │ │ └── tokenize.rs │ ├── timer/ │ │ ├── mod.rs │ │ ├── unix_timer.rs │ │ ├── wall_clock_timer.rs │ │ └── windows_timer.rs │ └── util/ │ ├── exit_code.rs │ ├── min_max.rs │ ├── mod.rs │ ├── number.rs │ ├── randomized_environment_offset.rs │ └── units.rs └── tests/ ├── common.rs ├── example_input_file.txt ├── execution_order_tests.rs └── integration_tests.rs