# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "json_diff_ng" version = "0.6.0" authors = [ "ChrisRega", "ksceriath", ] description = "A JSON diff library, featuring deep-sorting and key exclusion by regex. CLI is included." homepage = "https://github.com/ChrisRega/json-diff" readme = "README.md" keywords = [ "json-structural-diff", "json-diff", "diff", "json", "cli", ] categories = [ "command-line-utilities", "development-tools", ] license = "Unlicense" repository = "https://github.com/ChrisRega/json-diff" [lib] name = "json_diff_ng" crate-type = ["lib"] path = "src/lib.rs" [[bin]] name = "json_diff_ng" path = "src/main.rs" required-features = ["CLI"] [dependencies.clap] version = "4.5" features = ["derive"] optional = true [dependencies.diffs] version = "0.5" [dependencies.regex] version = "1.10" [dependencies.serde_json] version = "1.0" features = ["preserve_order"] [dependencies.thiserror] version = "1.0" [dependencies.vg_errortools] version = "0.1" [dev-dependencies.maplit] version = "1.0" [features] CLI = ["dep:clap"] default = ["CLI"]