summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: f251f3be06e02776db3fa291d47f5eda4e183b7b (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
[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.0.13"

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

[dependencies]
ansi_term = "0.11.0"
atty = "0.2.13"
box_drawing = "0.1.2"
console = "0.7.7"
itertools = "0.8.0"
regex = "1.2.1"
shell-words = "0.1.0"
structopt = "0.2.18"
syntect = "3.2.0"
unicode-segmentation = "1.3.0"

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