[package]
edition = "2024"
rust-version = "1.85"
name = "linecheck"
version = "1.0.0"
build = false
exclude = [
".changeset/**",
".claude/**",
".github/**",
".githooks/**",
"package.json",
"pnpm-lock.yaml",
"scripts/**",
"node_modules/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, configurable tool that warns or errors when files exceed a set line count"
homepage = "https://github.com/tupe12334/linecheck"
documentation = "https://docs.rs/linecheck"
readme = "README.md"
keywords = [
"lint",
"lines",
"cli",
"check",
"ai",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/tupe12334/linecheck"
[lib]
name = "linecheck"
path = "src/lib.rs"
[[bin]]
name = "linecheck"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "cli_coverage"
path = "tests/cli_coverage.rs"
[[test]]
name = "cli_coverage_2"
path = "tests/cli_coverage_2.rs"
[[test]]
name = "integration"
path = "tests/integration/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.glob]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.walkdir]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
all = "deny"