bat/Cargo.toml

42 lines
875 B
TOML
Raw Normal View History

2018-04-21 10:51:43 +00:00
[package]
authors = ["David Peter <mail@david-peter.de>"]
categories = ["command-line-utilities"]
2018-04-22 11:45:40 +00:00
description="A cat(1) clone with wings."
2018-04-21 10:51:43 +00:00
homepage = "https://github.com/sharkdp/bat"
license = "MIT/Apache-2.0"
name = "bat"
readme = "README.md"
repository = "https://github.com/sharkdp/bat"
version = "0.4.1"
2018-05-31 21:39:02 +00:00
exclude = [
"assets/syntaxes/*",
"assets/themes/*",
]
2018-04-21 10:51:43 +00:00
[dependencies]
atty = "0.2.2"
2018-05-08 21:49:07 +00:00
ansi_term = "0.10"
2018-04-21 10:51:43 +00:00
console = "0.6"
2018-05-08 21:49:07 +00:00
directories = "0.10"
lazy_static = "1.0"
2018-04-21 10:51:43 +00:00
2018-05-02 18:01:43 +00:00
[dependencies.git2]
2018-05-08 21:49:07 +00:00
version = "0.7"
2018-05-02 18:01:43 +00:00
default-features = false
features = []
2018-04-30 11:01:29 +00:00
[dependencies.syntect]
2018-05-31 20:57:18 +00:00
version = "2.1"
2018-04-30 11:01:29 +00:00
default-features = false
2018-04-30 13:20:00 +00:00
features = ["parsing", "yaml-load", "dump-load", "dump-create"]
2018-04-30 11:01:29 +00:00
2018-04-21 10:51:43 +00:00
[dependencies.clap]
version = "2"
default-features = false
features = ["suggestions", "color", "wrap_help"]
[dependencies.error-chain]
version = "0.11"
default-features = false
features = []