-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 853 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 853 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
[package]
name = "gits"
version = "0.1.0"
authors = ["Jimin Kim <hello@pompy.dev>"]
edition = "2024"
description = "git stats as TUI"
repository = "https://git.pompy.dev/pomp/gits"
license = "GPL-3.0-or-later"
categories = ["visualization"]
include = ["/src", "/README.md"]
[[bin]]
name = "gits"
[dependencies]
ratatui = "0.30.0"
gix = "0.84.0"
time = { version = "0.3.47", features = ["formatting", "parsing"] }
rayon = "1.12.0"
thousands = "0.2.0"
strum = { version = "0.28.0", features = ["derive"] }
throbber-widgets-tui = "0.11.0"
unicode-width = "0.2.2"
regex = "1.12.3"
[profile.release]
codegen-units = 1 # Allows compiler to perform better optimization.
lto = true # Enables Link-time Optimization.
opt-level = "s" # Prioritizes small binary size. Use `3` if you prefer speed.
strip = true # Ensures debug symbols are removed.