-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
54 lines (48 loc) · 1.52 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "codestats"
version = "0.6.0"
authors = ["Quin Gillespie <trypsynth@gmail.com>"]
edition = "2024"
description = "A CLI tool for analyzing code statistics across different programming languages"
readme = "README.md"
repository = "https://github.com/trypsynth/codestats"
license = "MIT"
keywords = ["code", "analysis", "cli", "tool"]
categories = ["command-line-utilities", "development-tools", "filesystem"]
rust-version = "1.88.0"
[[bin]]
name = "cs"
path = "src/main.rs"
[features]
default = ["html", "markdown"]
html = ["dep:askama"]
markdown = ["dep:askama"]
all-formats = ["html", "markdown"]
[dependencies]
aho-corasick = "1.1.4"
anyhow = "1.0.102"
askama = { version = "0.15.5", optional = true }
clap = { version = "4.6.0", default-features = false, features = ["std", "derive", "help", "usage", "wrap_help"] }
clap_complete = "4.6.0"
encoding_rs = "0.8.35"
globset = "0.4.18"
ignore = "0.4.25"
memchr = "2.8.0"
memmap2 = "0.9.10"
num-format = { version = "0.4", default-features = false, features = ["std"] }
serde = { version = "1.0.228", default-features = false, features = ["std", "derive"] }
serde_json = { version = "1.0.149", default-features = false, features = ["std"] }
terminal_size = "0.4.4"
toml = "1.1.0"
[build-dependencies]
indexmap = { version = "2.13.0", features = ["serde"] }
json5 = "1.3.1"
serde = { version = "1.0.228", default-features = false, features = ["std", "derive"] }
[profile.release]
strip = true
opt-level = 3
lto = "fat"
panic = "abort"
codegen-units = 1
[dev-dependencies]
rstest = "0.26.1"