jsonformat/jsonformat-cli/Cargo.toml
2025-03-21 18:22:58 +01:00

23 lines
623 B
TOML

[package]
name = "jsonformat-cli"
version = "0.2.0"
edition = "2024"
license = "MIT"
description = "Formats JSON extremely fast"
homepage = "https://github.com/Noratrieb/jsonformat"
repository = "https://github.com/Noratrieb/jsonformat"
readme = "README.md"
keywords = ["json", "formatting", "cli"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
jsonformat = { path = "..", version = "2.0.0" }
clap = { version = "3.1.12", features = ["derive"] }
anyhow = "1.0.57"
[[bin]]
name = "jsonformat"
path = "src/main.rs"