-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
51 lines (47 loc) · 1.28 KB
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
44
45
46
47
48
49
50
51
[package]
name = "serie"
version = "0.7.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"
rust-version = "1.88.0"
exclude = ["/.github", "/img"]
[dependencies]
ansi-to-tui = "8.0.1"
arboard = { version = "3.6.1", features = ["wayland-data-control"] }
base64 = "0.22.1"
chrono = "0.4.44"
clap = { version = "4.5.60", features = ["derive"] }
console = "0.16.2"
fuzzy-matcher = "0.3.7"
garde = { version = "0.22.1", features = ["derive", "regex"] }
image = { version = "0.25.10", default-features = false, features = [
"rayon",
"png",
] }
laurier = "0.3.0"
once_cell = "1.21.3"
ratatui = { version = "0.30.0", features = ["serde"] }
rayon = "1.11.0"
rustc-hash = "2.1.1"
semver = "1.0.27"
serde = { version = "1.0.228", features = ["derive"] }
smart-default = "0.7.1"
toml = "0.9.8"
tui-input = "0.15.0"
tui-tree-widget = "0.24.0"
umbra = "0.4.0"
[dev-dependencies]
dircpy = "0.3.19"
rstest = "0.26.1"
tempfile = "3.27.0"
text-to-png = "0.3.0"
[profile.release]
codegen-units = 1
lto = true