Problem
Clippy runs with -A dead_code applied workspace-wide, suppressing all dead code warnings. This masks unused functions, imports, and types that accumulate over time and increase maintenance burden.
Suggested Fix
- Remove the
-A dead_code flag from the Clippy configuration
- Fix all resulting warnings (remove dead code or mark intentionally-unused items with
#[allow(dead_code)] individually with a comment explaining why)
- This cleanup will also reduce binary size
Source
Quality audit, 2026-03-23.
Problem
Clippy runs with
-A dead_codeapplied workspace-wide, suppressing all dead code warnings. This masks unused functions, imports, and types that accumulate over time and increase maintenance burden.Suggested Fix
-A dead_codeflag from the Clippy configuration#[allow(dead_code)]individually with a comment explaining why)Source
Quality audit, 2026-03-23.