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-09-23 10:30:19 +02:00
|
|
|
version = "0.7.1"
|
2018-05-31 23:39:02 +02:00
|
|
|
exclude = [
|
|
|
|
"assets/syntaxes/*",
|
|
|
|
"assets/themes/*",
|
|
|
|
]
|
2018-10-03 09:39:30 +02:00
|
|
|
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"
|
2018-09-21 16:56:09 +02:00
|
|
|
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"
|
2018-04-30 15:08:04 +02:00
|
|
|
lazy_static = "1.0"
|
2018-10-03 22:59:11 +02:00
|
|
|
wild = "2.0"
|
2018-10-07 14:24:47 +02:00
|
|
|
content_inspector = "0.2.2"
|
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-05-31 22:57:18 +02:00
|
|
|
version = "2.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"]
|
2018-05-10 14:36:05 +02:00
|
|
|
|
|
|
|
[dependencies.error-chain]
|
2018-07-23 21:54:30 +02:00
|
|
|
version = "0.12"
|
2018-05-10 14:36:05 +02:00
|
|
|
default-features = false
|
|
|
|
features = []
|
2018-06-02 18:06:40 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempdir = "0.3"
|
2018-10-03 09:39:30 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2018-10-07 13:38:01 +02:00
|
|
|
clap = "2.32"
|