bat/Cargo.toml

62 lines
1.2 KiB
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"
2019-09-03 08:07:42 +02:00
version = "0.12.1"
2018-05-31 23:39:02 +02:00
exclude = [
"assets/syntaxes/*",
"assets/themes/*",
]
build = "build.rs"
2019-03-08 11:48:22 +01:00
edition = '2018'
2018-04-21 12:51:43 +02:00
[dependencies]
atty = "0.2.14"
2019-09-03 08:07:42 +02:00
ansi_term = "^0.12.1"
ansi_colours = "^1.0"
console = "0.10"
dirs = "2.0"
lazy_static = "1.4"
wild = "2.0"
content_inspector = "0.2.4"
2018-10-07 16:44:59 +02:00
encoding = "0.2"
shell-words = "0.1.0"
2020-02-01 10:47:29 +01:00
unicode-width = "0.1.7"
2018-04-21 12:51:43 +02:00
2018-05-02 20:01:43 +02:00
[dependencies.git2]
2020-03-15 14:18:04 +01:00
version = "0.13"
2018-05-02 20:01:43 +02:00
default-features = false
features = []
2018-04-30 13:01:29 +02:00
[dependencies.syntect]
version = "3.3.0"
2018-04-30 13:01:29 +02:00
default-features = false
2018-04-30 15:20:00 +02:00
features = ["parsing", "yaml-load", "dump-load", "dump-create"]
2018-04-30 13:01:29 +02:00
2018-04-21 12:51:43 +02:00
[dependencies.clap]
version = "2.33"
2018-04-21 12:51:43 +02:00
default-features = false
features = ["suggestions", "color", "wrap_help"]
[dependencies.error-chain]
version = "0.12"
default-features = false
features = []
[dev-dependencies]
tempdir = "0.3"
assert_cmd = "0.12.0"
[build-dependencies]
clap = "2.33"
liquid = "0.19"
lazy_static = "1.4"
2019-12-22 16:46:44 +01:00
[profile.release]
lto = true