forked from lusingander/serie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 920 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
37
38
[package]
name = "serie"
version = "0.1.0"
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"
exclude = ["/.github", "/img"]
[dependencies]
arboard = "3.4.0"
base64 = "0.22.1"
chrono = "0.4.38"
clap = { version = "4.5.9", features = ["derive"] }
console = "0.15.8"
image = "0.25.1"
olpc-cjson = "0.1.3"
ratatui = "0.27.0"
rayon = "1.10.0"
semver = "1.0.23"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
sha1 = "0.10.6"
toml = "0.8.16"
tui-input = "0.9.0"
tui-tree-widget = "0.21.0"
xdg = "2.5.2"
[dev-dependencies]
dircpy = "0.3.16"
tempfile = "3.10.1"
text-to-png = "0.2.0"