2 releases

0.1.0-rc2 Jan 7, 2025

#860 in Filesystem

Download history 123/week @ 2025-01-01 110/week @ 2025-01-08

233 downloads per month

Unlicense

10KB
180 lines

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:#?}");

Dependencies

~470KB
~11K SLoC