clean_dev_dirs/lib.rs
1//! # clean-dev-dirs
2//!
3//! A fast and efficient CLI tool for recursively cleaning Rust `target/` and Node.js `node_modules/`
4//! directories to reclaim disk space.
5//!
6//! This library provides the core functionality for the clean-dev-dirs CLI tool,
7//! allowing for scanning, filtering, and cleaning development project build artifacts.
8
9pub(crate) mod cleaner;
10pub mod cli;
11pub mod project;
12pub mod scanner;