forked from StrongChris/json-diff
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (33 loc) · 1.01 KB
/
Cargo.toml
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
32
33
34
35
36
37
38
39
[package]
name = "json_diff_ng"
version = "0.6.0"
authors = ["ChrisRega", "ksceriath"]
edition = "2021"
license = "Unlicense"
description = "A JSON diff library, featuring deep-sorting and key exclusion by regex. CLI is included."
readme = "README.md"
homepage = "https://github.com/ChrisRega/json-diff"
repository = "https://github.com/ChrisRega/json-diff"
categories = ["command-line-utilities", "development-tools"]
keywords = ["json-structural-diff", "json-diff", "diff", "json", "cli"]
[lib]
name = "json_diff_ng"
path = "src/lib.rs"
crate-type = ["lib"]
[[bin]]
name = "json_diff_ng"
path = "src/main.rs"
required-features = ["CLI"]
[features]
default = ["CLI"]
CLI = ["dep:clap"]
# 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"] }
diffs = "0.5"
regex = "1.10"
clap = { version = "4.5", features = ["derive"], optional = true }
[dev-dependencies]
maplit = "1.0"