summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: a0cc9ffe8f16c16e5a41f7549687164bc895ea98 (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
[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"
readme = "README.md"
repository = "https://github.com/dandavison/delta"
version = "0.4.5"

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

[dependencies]
ansi_colours = "1.0.1"
ansi_term = "0.12.1"
atty = "0.2.14"
bitflags = "1.2.1"
box_drawing = "0.1.2"
bytelines = "2.2.2"
console = "0.13.0"
dirs-next = "2.0.0"
itertools = "0.9.0"
lazy_static = "1.4"
regex = "1.4.2"
shell-words = "1.0.0"
structopt = "0.3.20"
unicode-segmentation = "1.7.1"
unicode-width = "0.1.8"
vte = "0.9.0"

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

[dependencies.syntect]
version = "4.5.0"
default-features = false
features = ["parsing", "assets", "yaml-load", "dump-load", "regex-onig"]

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