delta/Cargo.toml

48 lines
1.0 KiB
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"
2020-05-27 03:15:16 +03:00
version = "0.2.0"
[[bin]]
name = "delta"
path = "src/main.rs"
2019-06-24 00:28:25 +03:00
[dependencies]
ansi_colours = "1.0.1"
ansi_term = "0.12.1"
2020-04-29 05:11:07 +03:00
atty = "0.2.14"
bitflags = "1.2.1"
2019-07-12 06:49:11 +03:00
box_drawing = "0.1.2"
bytelines = "2.2.2"
console = "0.11.3"
2019-12-24 04:39:48 +03:00
dirs = "2.0"
lazy_static = "1.4"
regex = "1.3.9"
shell-words = "1.0.0"
structopt = "0.3.14"
unicode-segmentation = "1.6.0"
unicode-width = "0.1.7"
2019-07-01 00:36:17 +03:00
2020-06-07 16:58:32 +03:00
[dependencies.git2]
version = "0.13.6"
default-features = false
features = []
[dependencies.syntect]
version = "4.2.0"
default-features = false
features = ["parsing", "assets", "yaml-load", "dump-load", "regex-onig"]
2019-07-01 00:36:17 +03:00
[dependencies.error-chain]
version = "0.12.2"
2019-07-01 00:36:17 +03:00
default-features = false
features = []