1 2 3 4 5 6 7 8 9 10 11 12 13
pub mod audit; pub mod hash; pub mod piecewise; pub mod size_only; use blazehash::walk::WalkError; /// Print walk/hash errors to stderr. pub fn report_walk_errors(errors: &[WalkError]) { for err in errors { eprintln!("blazehash: warning: {}: {}", err.path.display(), err.error); } }