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-05-19 17:55:07 +02:00
|
|
|
version = "0.4.0"
|
2018-04-21 12:51:43 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
atty = "0.2.2"
|
2018-05-08 23:49:07 +02:00
|
|
|
ansi_term = "0.10"
|
2018-04-21 12:51:43 +02:00
|
|
|
console = "0.6"
|
2018-05-08 23:49:07 +02:00
|
|
|
directories = "0.10"
|
2018-04-30 15:08:04 +02:00
|
|
|
lazy_static = "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-05-16 22:23:37 +02:00
|
|
|
git = "https://github.com/trishume/syntect"
|
|
|
|
rev = "6ad8132b60cbf0637d92241de752f015ced01450"
|
|
|
|
# version = "2"
|
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]
|
|
|
|
version = "2"
|
|
|
|
default-features = false
|
|
|
|
features = ["suggestions", "color", "wrap_help"]
|
2018-05-10 14:36:05 +02:00
|
|
|
|
|
|
|
[dependencies.error-chain]
|
|
|
|
version = "0.11"
|
|
|
|
default-features = false
|
|
|
|
features = []
|