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"
|
2019-02-07 22:00:40 +00:00
|
|
|
version = "0.10.0"
|
2018-05-31 21:39:02 +00:00
|
|
|
exclude = [
|
|
|
|
"assets/syntaxes/*",
|
|
|
|
"assets/themes/*",
|
|
|
|
]
|
2018-10-03 07:39:30 +00:00
|
|
|
build = "build.rs"
|
2019-03-08 10:48:22 +00:00
|
|
|
edition = '2018'
|
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"
|
2018-09-21 14:56:09 +00:00
|
|
|
ansi_colours = "^1.0"
|
2018-11-23 03:40:29 +00:00
|
|
|
console = "0.7"
|
2019-01-31 17:53:10 +00:00
|
|
|
dirs = "1.0"
|
2019-02-27 03:19:08 +00:00
|
|
|
lazy_static = "1.3"
|
2018-10-03 20:59:11 +00:00
|
|
|
wild = "2.0"
|
2018-11-05 07:01:52 +00:00
|
|
|
content_inspector = "0.2.4"
|
2018-10-07 14:44:59 +00:00
|
|
|
encoding = "0.2"
|
2018-10-11 19:39:36 +00:00
|
|
|
shell-words = "0.1.0"
|
2018-04-21 10:51:43 +00:00
|
|
|
|
2018-05-02 18:01:43 +00:00
|
|
|
[dependencies.git2]
|
2018-12-14 03:18:44 +00:00
|
|
|
version = "0.8"
|
2018-05-02 18:01:43 +00:00
|
|
|
default-features = false
|
|
|
|
features = []
|
|
|
|
|
2018-04-30 11:01:29 +00:00
|
|
|
[dependencies.syntect]
|
2019-02-25 03:16:02 +00:00
|
|
|
version = "3.1.0"
|
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"]
|
2018-05-10 12:36:05 +00:00
|
|
|
|
|
|
|
[dependencies.error-chain]
|
2018-07-23 19:54:30 +00:00
|
|
|
version = "0.12"
|
2018-05-10 12:36:05 +00:00
|
|
|
default-features = false
|
|
|
|
features = []
|
2018-06-02 16:06:40 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempdir = "0.3"
|
2019-01-29 03:18:10 +00:00
|
|
|
assert_cmd = "0.11.0"
|
2019-01-01 03:17:01 +00:00
|
|
|
escargot = "0.4.0"
|
2018-10-03 07:39:30 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2018-10-07 11:38:01 +00:00
|
|
|
clap = "2.32"
|