code-line-count 0.2.1

Fast line counter specializing in code.
[package]
name = "code-line-count"
version = "0.2.1"
edition = "2024"
rust-version = "1.85"
authors = ["c1ph3rC4t"]
categories = ["command-line-utilities", "development-tools"]
description = "Fast line counter specializing in code."
homepage = "https://github.com/c1ph3rC4t/code-line-count"
keywords = ["loc", "lines", "code", "count", "cli"]
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/c1ph3rC4t/code-line-count"

[[bin]]
name = "clc"
path = "src/main.rs"

[dependencies]
clap = { version = "4.5.55", features = ["derive"] }
ignore = "0.4.25"
memchr = "2.7.6"
regex = "1.12.2"
thiserror = "2.0.18"

[lints.rust]
missing_docs = "warn"

[lints.clippy]
pedantic = "warn"
nursery = "warn"
unwrap_used = "warn"
expect_used = "warn"

[profile.release]
opt-level = 3
debug = false
strip = "symbols"
debug-assertions = false
overflow-checks = true
lto = "fat"
panic = "unwind"
incremental = false
codegen-units = 1
rpath = false