[package]
edition = "2024"
name = "rust-llm-tidy-cli"
version = "0.8.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for linting and tidying Rust, C#, and documentation source."
readme = "README.MD"
keywords = [
"cli",
"rust",
"reorder",
"lint",
"tidy",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
repository = "https://github.com/Sewer56/rust-llm-tidy"
resolver = "2"
[[bin]]
name = "rust-llm-tidy"
path = "src/main.rs"
doc = false
[[test]]
name = "config"
path = "tests/config/main.rs"
[[test]]
name = "doc_check"
path = "tests/doc_check/mod.rs"
[[test]]
name = "fix"
path = "tests/fix/main.rs"
[[test]]
name = "git_diff"
path = "tests/git_diff.rs"
[[test]]
name = "integration"
path = "tests/integration/main.rs"
[[test]]
name = "library_equivalence"
path = "tests/library_equivalence.rs"
[[test]]
name = "symbol_reminders"
path = "tests/symbol_reminders.rs"
[[test]]
name = "vis"
path = "tests/vis.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.rust-llm-tidy]
version = "0.4.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.indoc]
version = "2"
[dev-dependencies.rstest]
version = "0.27.0"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
std_instead_of_core = "warn"