Skip to main content

devclean/
lib.rs

1//! Safe discovery and cleanup of rebuildable development artifacts.
2
3pub mod cleaner;
4pub mod config;
5pub mod docker;
6pub mod model;
7pub mod policy;
8pub mod render;
9pub mod scanner;
10
11pub use cleaner::{CleanReport, clean};
12pub use config::{Config, config_candidates, load_config, parse_age, parse_bytes};
13pub use model::{Candidate, Category, OutputFormat, RenderOptions, ScanReport};
14pub use render::{human_bytes, render, render_with_options};
15pub use scanner::{ScanOptions, default_roots, scan};