cargo-reclaim 0.2.0

Safe Cargo cleanup for target directories, stale artifacts, and Cargo home caches
Documentation
mod apply;
mod classify;
mod inventory;
mod measure;
mod model;
mod persistence;
mod plan;
mod report;
mod resolve;

pub use apply::{
    CargoHomeApplyEntryResult, CargoHomeApplyEntryStatus, CargoHomeApplyReport,
    CargoHomeApplyTotals, execute_cargo_home_plan_apply, validate_cargo_home_plan_for_apply,
};
pub use classify::classify_cargo_home_relative_path;
pub use inventory::inventory_cargo_home;
pub use model::{
    CARGO_HOME_PLAN_SCHEMA_VERSION, CARGO_HOME_REPORT_SCHEMA_VERSION, CargoHomeClass,
    CargoHomeEntry, CargoHomeError, CargoHomeInput, CargoHomePathKind, CargoHomePlan,
    CargoHomePlanAction, CargoHomePlanEntry, CargoHomePlanTotals, CargoHomeProblem,
    CargoHomeRecommendation, CargoHomeReport, CargoHomeSource, CargoHomeTotals,
};
pub use persistence::{
    CARGO_HOME_PERSISTED_PLAN_SCHEMA_VERSION, PersistedCargoHomeInput, PersistedCargoHomePlan,
    PersistedCargoHomePlanBody, PersistedCargoHomePlanEntry, PersistedCargoHomePlanSnapshot,
    PersistedCargoHomePlanTotals, SaveCargoHomePlanOptions, ensure_cargo_home_plan_usable,
    load_cargo_home_plan_from_path, persist_cargo_home_plan, save_cargo_home_plan_to_path,
};
pub use plan::{CargoHomePlanRequest, build_cargo_home_plan, build_cargo_home_plan_from_report};
pub use report::{CargoHomeReportRequest, build_cargo_home_report};
pub use resolve::{CargoHomeResolveRequest, resolve_cargo_home};