jsonformat/Cargo.toml
2021-08-18 19:01:57 +02:00

37 lines
No EOL
796 B
TOML

[package]
name = "jsonformat"
version = "0.1.0"
authors = ["Nilstrieb <nilstrieb@gmail.com>"]
edition = "2018"
license = "MIT"
description = "Formats JSON extremely fast"
homepage = "https://github.com/Nilstrieb/jsonformat"
repository = "https://github.com/Nilstrieb/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]
clap = { version= "3.0.0-beta.2", optional = true }
[dev-dependencies]
criterion = "0.3"
[features]
default = ["bin"]
bin = ["clap"]
[lib]
name = "jsonformat"
path = "src/lib.rs"
[[bin]]
name = "jsonformat"
path = "src/main.rs"
required-features = ["bin"]
[[bench]]
name = "bench"
harness = false