You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bat/Cargo.toml

42 lines
875 B
TOML

6 years ago
[package]
authors = ["David Peter <mail@david-peter.de>"]
categories = ["command-line-utilities"]
6 years ago
description="A cat(1) clone with wings."
6 years ago
homepage = "https://github.com/sharkdp/bat"
license = "MIT/Apache-2.0"
name = "bat"
readme = "README.md"
repository = "https://github.com/sharkdp/bat"
version = "0.4.1"
exclude = [
"assets/syntaxes/*",
"assets/themes/*",
]
6 years ago
[dependencies]
atty = "0.2.2"
ansi_term = "0.10"
6 years ago
console = "0.6"
directories = "0.10"
lazy_static = "1.0"
6 years ago
[dependencies.git2]
version = "0.7"
default-features = false
features = []
[dependencies.syntect]
6 years ago
version = "2.1"
default-features = false
features = ["parsing", "yaml-load", "dump-load", "dump-create"]
6 years ago
[dependencies.clap]
version = "2"
default-features = false
features = ["suggestions", "color", "wrap_help"]
[dependencies.error-chain]
version = "0.11"
default-features = false
features = []