cargo-target-gc 0.1.3

Cargo target-artifact garbage collector: analyze and reclaim target/ build artifacts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! cargo-target-gc — a read-only Cargo target-artifact garbage collector.
//!
//! `scan` is a pure filesystem analysis of `target/` directories: it NEVER
//! invokes cargo and creates no build artifacts. `clean` reuses the same walk
//! to remove only reclaimable artifacts, and only with explicit confirmation.

pub mod active;
pub mod agent_skill;
pub mod clean;
pub mod cli;
pub mod config;
pub mod discovery;
pub mod report;
pub mod scan;
pub mod target;

#[cfg(test)]
mod test_support;