bat/Cargo.toml

56 lines
1.1 KiB
TOML
Raw Normal View History

2018-04-21 13:51:43 +03:00
[package]
authors = ["David Peter <mail@david-peter.de>"]
categories = ["command-line-utilities"]
2018-04-22 14:45:40 +03:00
description="A cat(1) clone with wings."
2018-04-21 13:51:43 +03:00
homepage = "https://github.com/sharkdp/bat"
license = "MIT/Apache-2.0"
name = "bat"
readme = "README.md"
repository = "https://github.com/sharkdp/bat"
2018-10-18 00:14:55 +03:00
version = "0.8.0"
2018-06-01 00:39:02 +03:00
exclude = [
"assets/syntaxes/*",
"assets/themes/*",
]
build = "build.rs"
2018-04-21 13:51:43 +03:00
[dependencies]
atty = "0.2.2"
2018-08-18 21:44:25 +03:00
ansi_term = "0.11"
ansi_colours = "^1.0"
2018-04-21 13:51:43 +03:00
console = "0.6"
2018-08-18 21:44:25 +03:00
directories = "1.0"
lazy_static = "1.2"
wild = "2.0"
2018-10-07 17:55:04 +03:00
content_inspector = "0.2.3"
2018-10-07 17:44:59 +03:00
encoding = "0.2"
shell-words = "0.1.0"
2018-04-21 13:51:43 +03:00
2018-05-02 21:01:43 +03:00
[dependencies.git2]
2018-05-09 00:49:07 +03:00
version = "0.7"
2018-05-02 21:01:43 +03:00
default-features = false
features = []
2018-04-30 14:01:29 +03:00
[dependencies.syntect]
2018-10-17 00:06:46 +03:00
version = "3.0.1"
2018-04-30 14:01:29 +03:00
default-features = false
2018-04-30 16:20:00 +03:00
features = ["parsing", "yaml-load", "dump-load", "dump-create"]
2018-04-30 14:01:29 +03:00
2018-04-21 13:51:43 +03:00
[dependencies.clap]
2018-08-22 20:27:11 +03:00
version = "2.32"
2018-04-21 13:51:43 +03:00
default-features = false
features = ["suggestions", "color", "wrap_help"]
[dependencies.error-chain]
version = "0.12"
default-features = false
features = []
[dev-dependencies]
tempdir = "0.3"
2018-10-10 23:56:56 +03:00
assert_cmd = "0.10.1"
2018-11-02 20:33:06 +03:00
escargot = "0.3.1"
[build-dependencies]
2018-10-07 14:38:01 +03:00
clap = "2.32"