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