[package]
edition = "2024"
rust-version = "1.85"
name = "code-line-count"
version = "0.2.1"
authors = ["c1ph3rC4t"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast line counter specializing in code."
homepage = "https://github.com/c1ph3rC4t/code-line-count"
readme = "README.md"
keywords = [
"loc",
"lines",
"code",
"count",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MPL-2.0"
repository = "https://github.com/c1ph3rC4t/code-line-count"
[[bin]]
name = "clc"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.55"
features = ["derive"]
[dependencies.ignore]
version = "0.4.25"
[dependencies.memchr]
version = "2.7.6"
[dependencies.regex]
version = "1.12.2"
[dependencies.thiserror]
version = "2.0.18"
[lints.clippy]
expect_used = "warn"
nursery = "warn"
pedantic = "warn"
unwrap_used = "warn"
[lints.rust]
missing_docs = "warn"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
debug-assertions = false
rpath = false
panic = "unwind"
overflow-checks = true
incremental = false
strip = "symbols"