-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 1.14 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
[package]
name = "git-igitt"
version = "0.1.21"
authors = ["Martin Lange <martin_lange_@gmx.net>"]
description = "Interactive Git terminal application to browse and visualize Git history graphs arranged for your branching model"
repository = "https://github.com/mlange-42/git-igitt.git"
keywords = ["git", "graph"]
license = "MIT"
readme = "README.md"
edition = "2021"
rust-version = "1.83.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = false
debug-assertions = false
overflow-checks = false
[features]
default = ["crossterm"]
[dependencies]
git2 = { version = "0.20", default-features = false, optional = false }
crossterm = { version = "0.29", optional = true }
tui = { version = "0.19", default-features = false, optional = false, features = [
"crossterm",
] }
unicode-width = "0.2"
muncher = "0.7"
itertools = "0.14"
clap = { version = "4.5", optional = false, features = ["cargo"] }
platform-dirs = "0.3"
yansi = "1.0"
toml = "0.9"
lazy_static = "1.4"
syntect = "5.0"
textwrap = { version = "0.16", default-features = false, optional = false, features = [
"unicode-width",
] }
log4rs = "1.2.0"
log = "0.4.18"
gleisbau = "0.7.1"