forked from ChrisRega/json-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 898 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "json_diff_ng"
version = "0.4.0"
authors = ["ksceriath", "ChrisRega"]
edition = "2021"
license = "Unlicense"
description = "A small diff tool utility for comparing jsons. Forked from ksceriath and improved for usage as a library and with good support for array diffs."
readme = "README.md"
homepage = "https://github.com/ChrisRega/json-diff"
repository = "https://github.com/ChrisRega/json-diff"
keywords = ["cli", "diff", "json"]
categories = ["command-line-utilities"]
[lib]
name = "json_diff"
path = "src/lib.rs"
crate-type = ["lib"]
[[bin]]
name = "json_diff"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0"
vg_errortools = "0.1"
serde_json = { version = "1.0", features = ["preserve_order"] }
maplit = "1.0"
clap = {version = "4.4", features = ["derive"]}
diffs = "0.5"