delta/Cargo.toml

34 lines
771 B
TOML
Raw Normal View History

2019-06-24 00:28:25 +03:00
[package]
name = "git-delta"
2019-06-24 00:28:25 +03:00
authors = ["Dan Davison <dandavison7@gmail.com>"]
2019-09-30 23:39:21 +03:00
categories = ["command-line-utilities", "development-tools"]
description = "A syntax-highlighting pager for git"
documentation = "https://github.com/dandavison/delta"
2019-06-24 00:28:25 +03:00
edition = "2018"
homepage = "https://github.com/dandavison/delta"
license = "MIT"
2019-09-30 23:39:21 +03:00
readme = "README.md"
repository = "https://github.com/dandavison/delta"
2019-12-04 04:33:49 +03:00
version = "0.0.15"
[[bin]]
name = "delta"
path = "src/main.rs"
2019-06-24 00:28:25 +03:00
[dependencies]
ansi_term = "0.11.0"
atty = "0.2.13"
2019-07-12 06:49:11 +03:00
box_drawing = "0.1.2"
console = "0.7.7"
itertools = "0.8.0"
regex = "1.2.1"
2019-07-01 00:36:17 +03:00
shell-words = "0.1.0"
structopt = "0.2.18"
syntect = "3.2.0"
unicode-segmentation = "1.3.0"
2019-07-01 00:36:17 +03:00
[dependencies.error-chain]
version = "0.12.1"
2019-07-01 00:36:17 +03:00
default-features = false
features = []