summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 24f762f6c9b87c3d6e3d15790734388c74479154 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "git-delta"
authors = ["Dan Davison <dandavison7@gmail.com>"]
categories = ["command-line-utilities", "development-tools"]
description = "A syntax-highlighting pager for git"
documentation = "https://github.com/dandavison/delta"
edition = "2018"
homepage = "https://github.com/dandavison/delta"
license = "MIT"
repository = "https://github.com/dandavison/delta"
version = "0.14.0"

[[bin]]
name = "delta"
path = "src/main.rs"

[dependencies]
bat = "0.21.0"
chrono = "0.4.19"
chrono-humanize = "0.2.1"
ansi_colours = "1.0.4"
ansi_term = "0.12.1"
atty = "0.2.14"
bitflags = "1.3.2"
box_drawing = "0.1.2"
bytelines = "2.4.0"
clap = { version = "3.2.8", features = ["derive"] }
console = "0.15.0"
ctrlc = "3.2.2"
dirs-next = "2.0.0"
grep-cli = "0.1.6"
itertools = "0.10.3"
lazy_static = "1.4"
palette = "0.6.0"
pathdiff = "0.2.1"
regex = "1.5.5"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.82"
shell-words = "1.0.0"
smol_str = "0.1.23"
syntect = "5.0.0"
unicode-segmentation = "1.9.0"
unicode-width = "0.1.9"
vte = "0.10.1"
xdg = "2.4.1"

[dependencies.git2]
version = "0.14.0"
default-features = false
features = []

[dependencies.sysinfo]
version = "0.24.5"
# no default features to disable the use of threads
default-features = false
features = []

[dependencies.error-chain]
version = "0.12.4"
default-features = false
features = []

[profile.test]
opt-level = 2