delta/Cargo.toml

50 lines
1.1 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-10-11 17:13:08 +03:00
version = "0.4.5"
[[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.13.0"
dirs = "3.0"
2020-06-11 01:59:29 +03:00
itertools = "0.9.0"
2019-12-24 04:39:48 +03:00
lazy_static = "1.4"
2020-11-02 17:03:01 +03:00
regex = "1.4.2"
shell-words = "1.0.0"
structopt = "0.3.20"
unicode-segmentation = "1.7.0"
unicode-width = "0.1.8"
vte = "0.9.0"
2019-07-01 00:36:17 +03:00
2020-06-07 16:58:32 +03:00
[dependencies.git2]
version = "0.13.12"
2020-06-07 16:58:32 +03:00
default-features = false
features = []
[dependencies.syntect]
version = "4.4.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 = []