bat/Cargo.toml

24 lines
530 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"
version = "0.1.0"
[dependencies]
atty = "0.2.2"
syntect = "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"
2018-04-21 12:51:43 +02:00
[dependencies.clap]
version = "2"
default-features = false
features = ["suggestions", "color", "wrap_help"]