-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
43 lines (40 loc) · 1 KB
/
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
37
38
39
40
41
42
43
[package]
name = "serie"
version = "0.4.2"
description = "A rich git commit graph in your terminal, like magic"
authors = ["Kyosuke Fujimoto <kyoro.f@gmail.com>"]
homepage = "https://github.com/lusingander/serie"
repository = "https://github.com/lusingander/serie"
readme = "README.md"
license = "MIT"
keywords = ["git", "cli", "tui", "terminal"]
categories = ["command-line-utilities"]
edition = "2021"
rust-version = "1.79.0"
exclude = ["/.github", "/img"]
[dependencies]
arboard = "3.4.1"
base64 = "0.22.1"
chrono = "0.4.39"
clap = { version = "4.5.27", features = ["derive"] }
color-eyre = "0.6.3"
console = "0.15.10"
fxhash = "0.2.1"
image = "0.25.5"
laurier = "0.1.0"
ratatui = "0.29.0"
rayon = "1.10.0"
semver = "1.0.25"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
smart-default = "0.7.1"
toml = "0.8.19"
tui-input = "0.11.1"
tui-tree-widget = "0.23.0"
umbra = "0.3.0"
xdg = "2.5.2"
[dev-dependencies]
dircpy = "0.3.19"
rstest = "0.24.0"
tempfile = "3.15.0"
text-to-png = "0.2.0"