[package]
edition = "2021"
name = "formatjson"
version = "0.3.2"
authors = ["Tushar Sadhwani <tushar.sadhwani000@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Formats JSON files"
homepage = "https://github.com/tusharsadhwani/formatjson"
documentation = "https://docs.rs/formatjson"
readme = "README.md"
keywords = [
"formatting",
"json",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/tusharsadhwani/formatjson"
[lib]
name = "formatjson"
path = "src/lib.rs"
[[bin]]
name = "formatjson"
path = "src/main.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "validator_tests"
path = "tests/validator_tests.rs"
[dependencies.miette]
version = "7.2.0"
features = ["fancy"]
[dependencies.thiserror]
version = "1.0.58"