[package]
edition = "2021"
name = "jshape"
version = "0.1.0"
build = false
include = [
"src/**/*",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Repair malformed JSON and render a stable, human-readable structural outline."
homepage = "https://github.com/Quantatirsk/jshape"
documentation = "https://docs.rs/jshape"
readme = "README.md"
keywords = [
"json",
"schema",
"shape",
"cli",
"repair",
]
categories = [
"command-line-utilities",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/Quantatirsk/jshape"
[lib]
name = "jshape"
path = "src/lib.rs"
[[bin]]
name = "jshape"
path = "src/main.rs"
[dependencies.indexmap]
version = "2.12.0"
[dependencies.json-repair]
version = "0.4.0"
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]