-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 793 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
32
[package]
name = "rjd"
version = "1.2.1"
edition = "2021"
description = "Compare two JSON files or inline JSON strings and output the differences"
repository = "https://github.com/darkcodi/rjd"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["json", "diff", "json-patch", "compare", "delta"]
categories = ["command-line-utilities", "development-tools", "encoding"]
[lib]
name = "rjd"
path = "src/lib.rs"
[[bin]]
name = "rjd"
path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
thiserror = "1.0"
[dev-dependencies]
proptest = "1.0"
tempfile = "3.0"
assert_cmd = "2.0"
predicates = "3.0"
serde_json = "1.0"
criterion = "0.8.1"