summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 2343b30cf085af36a39718a53d6655a4dca64960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
authors = ["David Peter <mail@david-peter.de>"]
categories = ["command-line-utilities"]
description="A cat(1) clone with wings."
homepage = "https://github.com/sharkdp/bat"
license = "MIT/Apache-2.0"
name = "bat"
readme = "README.md"
repository = "https://github.com/sharkdp/bat"
version = "0.2.2"

[dependencies]
atty = "0.2.2"
ansi_term = "0.9"
console = "0.6"
error-chain = "0.11"
directories = "0.9"
lazy_static = "1.0"

[dependencies.git2]
version = "0.6"
default-features = false
features = []

[dependencies.syntect]
version = "2"
default-features = false
features = ["parsing", "yaml-load", "dump-load", "dump-create"]

[dependencies.clap]
version = "2"
default-features = false
features = ["suggestions", "color", "wrap_help"]