-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 857 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "qc-cli"
version = "0.6.3"
edition = "2024"
description = "qc is designed to give you an instant breakdown of your codebase composition using Mmap and Parallel Directory Walking."
repository = "https://github.com/toast1599/qc"
readme = "README.md"
license = "GPL-3.0-or-later"
keywords = ["cli", "metrics", "code-analysis"]
categories = ["command-line-utilities"]
[[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"
serde = { version = "1.0", features = ["derive"] }
serde_yml = "0.0.12"
serde_json = "1"
# Removed once_cell and num_cpus in favor of std library (Rust 1.85+)
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
[profile.dist]
inherits = "release"
lto = "thin"