This crate provides JSON helper functions beyond Serialization & Deserialization such as diff
, merge
, ...
toml
[dependencies]
json_plus = "0.1"
```rust use jsonplus::diff; use serdejson::json;
fn main() -> Result<(), Box
let diffed = diff(&old, &new).unwrap();
println!("{}", diffed.to_string());
Ok(())
} ```
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Proteus by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.