[package]
edition = "2024"
rust-version = "1.85"
name = "tomlsmith-cli"
version = "0.4.0"
authors = ["Nirvana-Jie <1357711537@qq.com>"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line adapter for TomlSmith"
readme = "README.md"
keywords = [
"toml",
"formatter",
"parser",
"cli",
"configuration",
]
categories = [
"command-line-utilities",
"development-tools",
"config",
]
license = "MIT"
repository = "https://github.com/tomlsmith/tomlsmith"
resolver = "2"
[lib]
name = "tomlsmith_cli"
path = "src/lib.rs"
[[bin]]
name = "tomlsmith"
path = "src/main.rs"
[[test]]
name = "process"
path = "tests/process.rs"
[[test]]
name = "run_seam"
path = "tests/run_seam.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.27.0"
[dependencies.tomlsmith]
version = "0.4.0"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"