delta/Cargo.toml

54 lines
1.2 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"
repository = "https://github.com/dandavison/delta"
2021-10-29 22:21:29 +03:00
version = "0.9.2"
[[bin]]
name = "delta"
path = "src/main.rs"
2019-06-24 00:28:25 +03:00
[dependencies]
ansi_colours = "1.0.4"
ansi_term = "0.12.1"
2020-04-29 05:11:07 +03:00
atty = "0.2.14"
bitflags = "1.3.2"
2019-07-12 06:49:11 +03:00
box_drawing = "0.1.2"
bytelines = "2.2.2"
console = "0.15.0"
ctrlc = "3.2.1"
dirs-next = "2.0.0"
grep-cli = "0.1.6"
itertools = "0.10.1"
2019-12-24 04:39:48 +03:00
lazy_static = "1.4"
pathdiff = "0.2.1"
regex = "1.4.6"
shell-words = "1.0.0"
smol_str = "0.1.18"
structopt = "0.3.25"
unicode-segmentation = "1.8.0"
unicode-width = "0.1.9"
vte = "0.10.1"
xdg = "2.4.0"
2019-07-01 00:36:17 +03:00
2020-06-07 16:58:32 +03:00
[dependencies.git2]
version = "0.13.23"
2020-06-07 16:58:32 +03:00
default-features = false
features = []
[dependencies.syntect]
version = "4.6.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.4"
2019-07-01 00:36:17 +03:00
default-features = false
features = []