json_diff 0.1.2

A small diff tool utility for comparing jsons
Documentation
[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"