cruftkill 0.2.3

Polyglot dev-cache reaper — find and delete node_modules, .venv, target, DerivedData and the rest of your build cruft from a fast terminal UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Core library — public, framework-agnostic API.
//!
//! Phase 02 added the scanner + GLOBAL_IGNORE.
//! Phase 03 adds folder size calculation.
//! Phase 04 adds risk analysis + safe-delete guard.
//! Subsequent phases add `delete`, `profiles`, `sort`, `filter`.

pub mod delete;
pub mod error;
pub mod filter;
pub mod ignore;
pub mod profiles;
pub mod risk;
pub mod safe_delete;
pub mod scanner;
pub mod size;
pub mod sort;
pub mod types;