It is a library which compare two tree direcories asynchronously through tokio and return true in case that both are different. Useful to create watchers in the servers
toml
spielrs_diff = "0.1"
```rust use spielrsdiff::dirdiff;
async fn shouldreturntrueifbothdirtreearedifferent() { let diff = dirdiff( "./mocks/dirone".tostring(), "./mocks/dirthree".tostring(), ) .await; asserteq!(diff, true); } ```
Spielrs Diff is MIT licensed. See license