cargo-reclaim 0.2.1

Safe Cargo cleanup for target directories, stale artifacts, and Cargo home caches
Documentation
mod cargo_config;
mod error;
mod model;
mod parse;
mod values;

pub use cargo_config::{
    CARGO_CONFIG_PREVIEW_SCHEMA_VERSION, CARGO_CONFIG_RECOMMEND_SCHEMA_VERSION,
    CargoConfigApplyReport, CargoConfigApplyRequest, CargoConfigFileSnapshot, CargoConfigOutputDir,
    CargoConfigPreviewOperation, CargoConfigPreviewOperationStatus, CargoConfigPreviewReport,
    CargoConfigPreviewRequest, CargoConfigRecommendReport, CargoConfigRecommendRequest,
    CargoConfigRecommendation, apply_cargo_config_preview, build_cargo_config_preview_report,
    build_cargo_config_recommend_report,
};
pub use error::ConfigError;
pub use model::{
    BackgroundConfig, BackgroundMode, PolicyThresholdConfig, ReclaimConfig, ScannerConfig,
    SchedulerConfig, WholeTargetConfig,
};
pub use parse::{load_config_from_path, parse_config};