[package]
name = "qc-cli"
description = "qc is designed to give you an instant breakdown of your codebase composition. It uses Memory Mapping (Mmap) and Parallel Directory Walking to scan tens of thousands of files in milliseconds."
repository = "https://github.com/toast1599/qc"
readme = "README.md"
version = "0.4.0"
authors = ["toast1599 swizzguy76@gmail.com"]
edition = "2024"
license = "GPL-3.0-only"
[[bin]]
name = "qc"
path = "src/main.rs"
[dependencies]
bytecount = "0.6.9"
crossbeam-channel = "0.5.15"
ignore = "0.4.25"
indicatif = "0.18.3"
memmap2 = "0.9.9"
num_cpus = "1.17.0"
serde = { version = "1.0", features = ["derive"] }
serde_yml = "0.0.12"
once_cell = "1.18"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true