bat/Cargo.toml

30 lines
683 B
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-05-01 12:46:33 +02:00
version = "0.2.1"
2018-04-21 12:51:43 +02:00
[dependencies]
atty = "0.2.2"
ansi_term = "0.9"
console = "0.6"
2018-04-21 17:12:25 +02:00
git2 = "0.6"
2018-04-30 11:09:24 +02:00
error-chain = "0.11"
directories = "0.9"
lazy_static = "1.0"
2018-04-21 12:51:43 +02:00
2018-04-30 13:01:29 +02:00
[dependencies.syntect]
version = "2"
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"]