cruftkill 0.2.0

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
//! cruftkill — find and delete `node_modules` (and friends) recursively.
//!
//! Port of [voidcosmos/npkill](https://github.com/voidcosmos/npkill) into idiomatic
//! Rust with an async (tokio) core and a `ratatui` TUI.
//!
//! Public surface lives under [`core`]; the `cft` binary is in `src/main.rs`.

pub mod cli;
pub mod core;
pub mod tui;

pub use crate::core::error::CruftError;
pub use crate::core::types::{
    DeleteResult, FolderResult, RiskAnalysis, ScanFoundFolder, ScanOptions, SortBy, SortDirection,
};