A small Rust crate to deeply diff `serde_json::Value` trees.
This crate helps you compare two JSON values recursively and returns a list of differences, showing exactly which parts have changed.
- --
Add this to your `Cargo.toml`:
```toml
[dependencies]
deep-diff = "0.1"
serde_json = "1.0"
```