bat/Cargo.toml

75 lines
1.6 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"
2020-03-22 11:17:38 +01:00
version = "0.13.0"
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
2020-03-30 18:43:13 +02:00
[features]
default = ["application"]
# Feature required for bat the application. Should be disabled when depending on
# bat as a library.
application = [
"atty",
"clap",
"dirs",
"lazy_static",
"liquid",
"wild",
]
2018-04-21 12:51:43 +02:00
[dependencies]
2020-03-30 18:43:13 +02:00
atty = { version = "0.2.14", optional = true }
2019-09-03 08:07:42 +02:00
ansi_term = "^0.12.1"
ansi_colours = "^1.0"
console = "0.10"
2020-03-30 18:43:13 +02:00
dirs = { version = "2.0", optional = true }
lazy_static = { version = "1.4", optional = true }
wild = { version = "2.0", optional = true }
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"
globset = "0.4"
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
2018-04-30 13:01:29 +02:00
[dependencies.syntect]
version = "3.2.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"
2020-03-30 18:43:13 +02:00
optional = true
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
[dev-dependencies]
tempdir = "0.3"
assert_cmd = "0.12.0"
[build-dependencies]
2020-03-30 18:43:13 +02:00
clap = { version = "2.33", optional = true }
liquid = { version = "0.20", optional = true }
lazy_static = { version = "1.4", optional = true }
2019-12-22 16:46:44 +01:00
[profile.release]
lto = true