zccache 1.12.9

Local-first compiler cache for C/C++/Rust/Emscripten
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Performance benchmark: warm-cache compilation latency.
//!
//! This is a thin shim. The implementation has been split across the
//! `perf_bench/` directory so each file stays under the 1000-LOC limit
//! while still being discoverable as a single `--test perf_bench_test`
//! test binary by cargo.
//!
//! See [`perf_bench/README.md`](perf_bench/README.md) for the module map.
//!
//! Run with: soldr cargo test -p zccache-daemon --test perf_bench_test -- --nocapture --ignored

#[path = "perf_bench/mod.rs"]
mod perf_bench;