-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 712 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 712 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
[package]
name = "gitpulse"
version = "0.1.0"
edition = "2024"
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
git2 = "0.20"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
serde_json = "1"
reqwest = { version = "0.12", features = ["json"] }
rusqlite = { version = "0.32", features = ["bundled"] }
nucleo = "0.5"
dirs = "6.0"
color-eyre = "0.6"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
chrono = { version = "0.4", features = ["serde"] }
unicode-width = "0.2"
clap = { version = "4", features = ["derive"] }
tui-textarea = "0.7"
[dev-dependencies]
tempfile = "3"