forked from altsem/gitu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 844 Bytes
/
Cargo.toml
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
[package]
name = "gitu"
description = "A git client inspired by Magit"
version = "0.4.0"
edition = "2021"
license = "MIT"
[[bench]]
name = "show"
harness = false
[dev-dependencies]
pretty_assertions = "1.4.0"
temp-dir = "0.1.12"
criterion = "0.5.1"
pprof = { version = "0.13.0", features = ["flamegraph", "criterion"] }
[dependencies]
chrono = "0.4.34"
clap = { version = "4.5.1", features = ["derive"] }
crossterm = "0.27.0"
directories = "5.0.1"
figment = { version = "0.10.14", features = ["toml"] }
git2 = "0.18.2"
insta = "1.36.1"
itertools = "0.12.0"
log = "0.4.21"
ratatui = { version = "0.26.1", features = ["serde"] }
serde = { version = "1.0.152", features = ["derive"] }
signal-hook = "0.3.17"
similar = { version = "2.4.0", features = ["unicode"] }
simple-logging = "2.0.2"
strum = "0.26.1"
toml = "0.8.10"
tui-prompts = "0.3.5"