forked from altsem/gitu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 870 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
36
[package]
name = "gitu"
description = "A git client inspired by Magit"
version = "0.14.0"
edition = "2021"
license = "MIT"
[[bench]]
name = "show"
harness = false
[dev-dependencies]
pretty_assertions = "1.4.0"
temp-dir = "0.1.13"
criterion = "0.5.1"
insta = "1.38.0"
unicode-width = "0.1.11"
[dependencies]
chrono = "0.4.37"
clap = { version = "4.5.4", features = ["derive"] }
crossterm = "0.27.0"
derive_more = "0.99.17"
directories = "5.0.1"
figment = { version = "0.10.15", features = ["toml"] }
git-version = "0.3.9"
git2 = { version = "0.18.3", default-features = false }
itertools = "0.12.0"
log = "0.4.21"
nom = "7.1.3"
ratatui = { version = "0.26.1", features = ["serde"] }
serde = { version = "1.0.152", features = ["derive"] }
similar = { version = "2.5.0", features = ["unicode", "inline"] }
simple-logging = "2.0.2"
toml = "0.8.12"
tui-prompts = "0.3.10"