mirror of
https://github.com/sharkdp/bat
synced 2024-11-02 21:40:15 +00:00
45 lines
913 B
TOML
45 lines
913 B
TOML
[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.6.0"
|
|
exclude = [
|
|
"assets/syntaxes/*",
|
|
"assets/themes/*",
|
|
]
|
|
|
|
[dependencies]
|
|
atty = "0.2.2"
|
|
ansi_term = "0.11"
|
|
console = "0.6"
|
|
directories = "1.0"
|
|
lazy_static = "1.0"
|
|
|
|
[dependencies.git2]
|
|
version = "0.7"
|
|
default-features = false
|
|
features = []
|
|
|
|
[dependencies.syntect]
|
|
version = "2.1"
|
|
default-features = false
|
|
features = ["parsing", "yaml-load", "dump-load", "dump-create"]
|
|
|
|
[dependencies.clap]
|
|
version = "2.32"
|
|
default-features = false
|
|
features = ["suggestions", "color", "wrap_help"]
|
|
|
|
[dependencies.error-chain]
|
|
version = "0.12"
|
|
default-features = false
|
|
features = []
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3"
|