git_perf/
lib.rs

1pub mod audit;
2pub mod basic_measure;
3pub mod cli;
4pub mod config;
5pub mod config_cmd;
6pub mod converters;
7pub mod data;
8pub mod filter;
9pub mod git;
10pub mod import;
11pub mod measurement_retrieval;
12pub mod measurement_storage;
13pub mod parsers;
14pub mod reporting;
15pub mod serialization;
16pub mod size;
17pub mod stats;
18pub mod units;
19
20// Test helpers module - made public for use in unit tests, integration tests, and benchmarks
21// This is conditionally compiled to avoid including test code in release builds
22#[doc(hidden)]
23#[cfg(any(test, doctest, feature = "test-helpers"))]
24pub mod test_helpers;