[package]
edition = "2021"
rust-version = "1.82"
name = "gruff-rs"
version = "0.4.0"
build = false
exclude = [
".agents/",
".claude/",
".codex/",
".github/",
".goat-flow/",
"AGENTS.md",
"CLAUDE.md",
"bin/",
"docs/coding-standards/",
"package.json",
"package-lock.json",
"scripts/bump-version.sh",
"scripts/dependency-install.sh",
"scripts/dependency-update.sh",
"scripts/preflight-checks.sh",
"scripts/publish-crates.sh",
"scripts/start-dev.sh",
"scripts/test-performance.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust static analyzer and quality linter for CI: dead-code, complexity, security, secrets, and architecture rules with deterministic SARIF/JSON output and baseline support."
homepage = "https://github.com/blundergoat/gruff-rs"
documentation = "https://docs.rs/gruff-rs"
readme = "README.md"
keywords = [
"lint",
"static-analysis",
"code-quality",
"sarif",
"cli",
]
categories = [
"development-tools",
"command-line-utilities",
"development-tools::testing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/blundergoat/gruff-rs"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ version }-{ target }.{ archive-format }"
pkg-fmt = "tar.gz"
bin-dir = "{ name }-{ version }-{ target }/{ bin }{ binary-ext }"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[package.metadata.binstall.overrides.aarch64-pc-windows-msvc]
pkg-fmt = "zip"
[[bin]]
name = "gruff-rs"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.ignore]
version = "0.4"
[dependencies.proc-macro2]
version = "1"
features = ["span-locations"]
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.syn]
version = "2"
features = [
"full",
"visit",
]
[dependencies.toml]
version = "0.8"
[dependencies.walkdir]
version = "2"
[dev-dependencies.tempfile]
version = "3"