cmpdt 0.1.0-rc2

compare directory trees
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# cmpdt

Compare directory trees

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