cmpdt 0.1.0-rc2

compare directory trees
Documentation
  • Coverage
  • 37.5%
    6 out of 16 items documented0 out of 6 items with examples
  • Size
  • Source code size: 10.7 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 476.68 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • fetchfern

cmpdt

Compare directory trees

use std::path::PathBuf;
use cmpdt::cmp_ftree_sync;

let cmp = PathBuf::from("...");
let against = PathBuf::from("...");
let result = cmp_ftree_sync(against, cmp);

println!("{result:#?}");