bat/Cargo.toml

88 lines
2.1 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-05-27 10:14:32 +02:00
version = "0.15.4"
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",
"git",
2020-03-30 18:43:13 +02:00
"lazy_static",
"liquid",
2020-03-30 19:36:26 +02:00
"paging",
2020-03-30 18:43:13 +02:00
"wild",
"regex-onig",
2020-03-30 18:43:13 +02:00
]
git = ["git2"] # Support indicating git modifications
2020-03-30 19:36:26 +02:00
paging = ["shell-words"] # Support applying a pager on the output
regex-onig = ["syntect/regex-onig"] # Use the "oniguruma" regex engine
regex-fancy = ["syntect/regex-fancy"] # Use the rust-only "fancy-regex" engine
2020-03-30 18:43:13 +02:00
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.11.3"
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 = { version = "1.0.0", optional = true }
unicode-width = "0.1.8"
globset = "0.4"
2020-04-21 17:19:07 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
semver = "0.10"
path_abs = { version = "0.5", default-features = false }
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"
optional = true
2018-05-02 20:01:43 +02:00
default-features = false
2018-04-30 13:01:29 +02:00
[dependencies.syntect]
version = "4.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 = "1.0.1"
predicates = "1.0.4"
[build-dependencies]
2020-03-30 18:43:13 +02:00
clap = { version = "2.33", optional = true }
liquid = { version = "0.20", optional = true }
2019-12-22 16:46:44 +01:00
[profile.release]
lto = true
2020-04-24 16:28:51 +02:00
codegen-units = 1