forked from ksceriath/json-diff
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 681 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 681 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
[package]
name = "json_diff"
version = "0.1.2"
authors = ["ksceriath"]
edition = "2018"
license = "Unlicense"
description = "A small diff tool utility for comparing jsons"
readme = "README.md"
homepage = "https://github.com/ksceriath/json-diff"
repository = "https://github.com/ksceriath/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]
serde_json = "1.0.41"
maplit = "1.0.2"
colored = "1.9.0"
structopt = "0.3.5"