-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 956 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (34 loc) · 956 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 = "codestate"
version = "2.0.0"
edition = "2021"
authors = ["Henry Lok <ihenrylok@gmail.com>"]
description = "Instant codebase insights in your terminal — fast, local, zero telemetry."
repository = "https://github.com/HenryLok0/CodeState"
readme = "README.md"
documentation = "https://github.com/HenryLok0/CodeState#readme"
license = "MIT"
keywords = ["cli", "metrics", "stats", "loc", "complexity"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4.4", features = ["derive"] }
ignore = "0.4.21"
rayon = "1.8.0"
git2 = "0.18.2"
comfy-table = "7.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1.10.2"
aho-corasick = "1.1.2"
anyhow = "1.0.75"
rust_xlsxwriter = "0.95.0"
ratatui = "0.30.0"
crossterm = "0.29.0"
foldhash = "0.1.3"
tree-sitter = "0.24.4"
tree-sitter-rust = "0.23.2"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true