cargo_target_gc/lib.rs
1//! cargo-target-gc — a read-only Cargo target-artifact garbage collector.
2//!
3//! `scan` is a pure filesystem analysis of `target/` directories: it NEVER
4//! invokes cargo and creates no build artifacts. `clean` reuses the same walk
5//! to remove only reclaimable artifacts, and only with explicit confirmation.
6
7pub mod active;
8pub mod agent_skill;
9pub mod clean;
10pub mod cli;
11pub mod config;
12pub mod discovery;
13pub mod report;
14pub mod scan;
15pub mod target;
16
17#[cfg(test)]
18mod test_support;