clean-dev-dirs 2.8.1

A fast CLI tool for recursively cleaning development build directories (Rust, Node.js, Python, Go, Java/Kotlin, C/C++, Swift, .NET) to reclaim disk space
Documentation
//! # clean-dev-dirs
//!
//! A fast and efficient CLI tool for recursively cleaning Rust `target/` and Node.js `node_modules/`
//! directories to reclaim disk space.
//!
//! This library provides the core functionality for the clean-dev-dirs CLI tool,
//! allowing for scanning, filtering, and cleaning development project build artifacts.

pub mod cleaner;
pub mod config;
pub mod executables;
pub mod filtering;
pub mod output;
pub mod project;
pub mod scanner;
pub mod utils;

// Re-export commonly used types for convenience
pub use cleaner::{CleanResult, Cleaner};
pub use config::{
    ExecutionOptions, FileConfig, FilterOptions, ProjectFilter, ScanOptions, SortCriteria,
    SortOptions,
};
pub use filtering::filter_projects;
pub use output::JsonOutput;
pub use project::{BuildArtifacts, Project, ProjectType, Projects};
pub use scanner::Scanner;
pub use utils::parse_size;