jsondiff_rs

Crates.iojsondiff_rs
lib.rsjsondiff_rs
version0.1.0
sourcesrc
created_at2023-03-12 08:43:26.320609
updated_at2023-03-12 08:43:26.320609
descriptionJSON Diff implementation in Rust
homepagehttps://github.com/Nero5023/jsondiffpatch.rs
repositoryhttps://github.com/Nero5023/jsondiffpatch.rs
max_upload_size
id807887
size29,675
Nero (Nero5023)

documentation

https://github.com/Nero5023/jsondiffpatch.rs

README

diff

diff two json file

USAGE:
    jsondiffpath-cli diff <LEFT_JSON> <RIGHT_JSON>

ARGS:
    <LEFT_JSON>
    <RIGHT_JSON>

OPTIONS:
    -h, --help    Print help information

e.g.

LEFT_JSON:

{
    "bar": [
        1, 2, 3
    ],
    "foo": 10
}

RIGHT_JSON:

{
    "bar": [
        2, 3, 4
    ],
    "foo": 11
}

diff:

diff_example.png

Commit count: 107

cargo fmt