-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
37 lines (34 loc) · 1.05 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
[package]
name = "git-igitt"
version = "0.1.18"
authors = ["Martin Lange <[email protected]>"]
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"
[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.15", default-features = false, optional = false }
crossterm = { version = "0.25", optional = true }
tui = { version = "0.19", default-features = false, optional = false, features=["crossterm"] }
unicode-width = "0.1"
muncher = "0.7"
itertools = "0.10"
clap = {version = "4.0", optional = false}
platform-dirs = "0.3"
yansi = "0.5"
toml = "0.5"
lazy_static = "1.4"
syntect = "5.0"
textwrap = {version = "0.16", default-features = false, optional = false, features = ["unicode-width"]}
git-graph = "0.5.3"