Spielrs Diff

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

How install it

  1. add the dependency in the Cargo.toml file of the project: toml spielrs_diff = "0.1"

Example

```rust use spielrsdiff::dirdiff;

[tokio::test]

async fn shouldreturntrueifbothdirtreearedifferent() { let diff = dirdiff( "./mocks/dirone".tostring(), "./mocks/dirthree".tostring(), ) .await; asserteq!(diff, true); } ```

License

Spielrs Diff is MIT licensed. See license