file-engine 2.2.0

Async, cross-platform file operations engine for desktop apps and developer tools: copy, move, sync, watch, and compress files with progress reporting and cancellation.
Documentation
mod builder;
mod error_strategy;
mod filter;
mod handle;
#[cfg(feature = "checksum")]
mod hash;
mod progress;
mod report;
mod util;
mod walk;

pub use builder::{AnalyzeBuilder, DEFAULT_TOP_N_LARGEST};
pub use error_strategy::AnalysisErrorStrategy;
pub use handle::AnalysisHandle;
pub use progress::AnalysisProgress;
pub use report::{
    AgeBuckets, AnalysisReport, Entry, ExtensionStats, MimeStats, DEFAULT_MAX_REPORTED_ERRORS,
};
#[cfg(feature = "checksum")]
pub use report::{DuplicateGroup, DEFAULT_MAX_REPORTED_DUPLICATE_GROUPS};