bat/Cargo.toml

56 lines
1.1 KiB
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"
2018-10-17 21:14:55 +00:00
version = "0.8.0"
2018-05-31 21:39:02 +00:00
exclude = [
"assets/syntaxes/*",
"assets/themes/*",
]
build = "build.rs"
2018-04-21 10:51:43 +00:00
[dependencies]
atty = "0.2.2"
2018-08-18 18:44:25 +00:00
ansi_term = "0.11"
ansi_colours = "^1.0"
2018-04-21 10:51:43 +00:00
console = "0.6"
2018-08-18 18:44:25 +00:00
directories = "1.0"
lazy_static = "1.2"
wild = "2.0"
2018-10-07 14:55:04 +00:00
content_inspector = "0.2.3"
2018-10-07 14:44:59 +00:00
encoding = "0.2"
shell-words = "0.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-10-16 21:06:46 +00:00
version = "3.0.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]
2018-08-22 17:27:11 +00:00
version = "2.32"
2018-04-21 10:51:43 +00:00
default-features = false
features = ["suggestions", "color", "wrap_help"]
[dependencies.error-chain]
version = "0.12"
default-features = false
features = []
[dev-dependencies]
tempdir = "0.3"
2018-10-10 20:56:56 +00:00
assert_cmd = "0.10.1"
2018-11-02 17:33:06 +00:00
escargot = "0.3.1"
[build-dependencies]
2018-10-07 11:38:01 +00:00
clap = "2.32"