docs/performance.md ends with: "Benchmark code: benches/performance.rs. Run cargo test benches:: --nocapture." Cargo.toml registers this file as [[test]] name = "performance" path = "benches/performance.rs", and the file itself contains no mod benches — its own final println! (line 270) tells the user to run cargo test --test performance -- --nocapture. The command documented in performance.md filters on a benches:: prefix that doesn't exist in the test binary and would silently match zero tests.
docs/performance.md ends with: "Benchmark code:
benches/performance.rs. Runcargo test benches:: --nocapture."Cargo.tomlregisters this file as[[test]] name = "performance" path = "benches/performance.rs", and the file itself contains nomod benches— its own finalprintln!(line 270) tells the user to runcargo test --test performance -- --nocapture. The command documented in performance.md filters on abenches::prefix that doesn't exist in the test binary and would silently match zero tests.