bat/Cargo.toml

56 lines
1.1 KiB
TOML
Raw Normal View History

2018-04-21 12:51:43 +02:00
[package]
authors = ["David Peter <mail@david-peter.de>"]
categories = ["command-line-utilities"]
2018-04-22 13:45:40 +02:00
description="A cat(1) clone with wings."
2018-04-21 12:51:43 +02: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 23:14:55 +02:00
version = "0.8.0"
2018-05-31 23:39:02 +02:00
exclude = [
"assets/syntaxes/*",
"assets/themes/*",
]
build = "build.rs"
2018-04-21 12:51:43 +02:00
[dependencies]
atty = "0.2.2"
2018-08-18 20:44:25 +02:00
ansi_term = "0.11"
ansi_colours = "^1.0"
2018-04-21 12:51:43 +02:00
console = "0.6"
2018-08-18 20:44:25 +02:00
directories = "1.0"
lazy_static = "1.2"
wild = "2.0"
2018-10-07 16:55:04 +02:00
content_inspector = "0.2.3"
2018-10-07 16:44:59 +02:00
encoding = "0.2"
shell-words = "0.1.0"
2018-04-21 12:51:43 +02:00
2018-05-02 20:01:43 +02:00
[dependencies.git2]
2018-05-08 23:49:07 +02:00
version = "0.7"
2018-05-02 20:01:43 +02:00
default-features = false
features = []
2018-04-30 13:01:29 +02:00
[dependencies.syntect]
2018-10-16 23:06:46 +02:00
version = "3.0.1"
2018-04-30 13:01:29 +02:00
default-features = false
2018-04-30 15:20:00 +02:00
features = ["parsing", "yaml-load", "dump-load", "dump-create"]
2018-04-30 13:01:29 +02:00
2018-04-21 12:51:43 +02:00
[dependencies.clap]
2018-08-22 19:27:11 +02:00
version = "2.32"
2018-04-21 12:51:43 +02: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 22:56:56 +02:00
assert_cmd = "0.10.1"
2018-11-02 18:33:06 +01:00
escargot = "0.3.1"
[build-dependencies]
2018-10-07 13:38:01 +02:00
clap = "2.32"