bat/Cargo.toml

108 lines
2.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"]
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"
repository = "https://github.com/sharkdp/bat"
2021-07-12 22:07:23 +02:00
version = "0.18.2"
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 = ["full-application"]
2020-03-30 18:43:13 +02:00
# Feature required for bat the application. Should be disabled when depending on
# bat as a library.
full-application = [
"application",
2020-03-30 18:43:13 +02:00
"atty",
"bugreport",
2020-03-30 18:43:13 +02:00
"clap",
"dirs-next",
"git",
2020-03-30 18:43:13 +02:00
"lazy_static",
2020-03-30 19:36:26 +02:00
"paging",
"regex-onig",
"wild",
2020-03-30 18:43:13 +02:00
]
# Mainly for developers that want to iterate quickly
# Be aware that the included features might change in the future
quick-build-application = [
"application",
"atty",
"clap",
"dirs-next",
"lazy_static",
"paging",
"regex-onig",
"wild",
]
application = []
git = ["git2"] # Support indicating git modifications
2020-03-30 19:36:26 +02:00
paging = ["shell-words"] # Support applying a pager on the output
# You need to use one of these if you depend on bat as a library:
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.14.1"
2020-03-30 18:43:13 +02:00
lazy_static = { version = "1.4", optional = true }
lazycell = "1.0"
2020-03-30 18:43:13 +02:00
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 = "1.0"
path_abs = { version = "0.5", default-features = false }
clircle = "0.3"
bugreport = { version = "0.4", optional = true }
dirs-next = { version = "2.0.0", optional = true }
grep-cli = "0.1.6"
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.6.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]
assert_cmd = "1.0.8"
serial_test = "0.5.1"
predicates = "2.0.1"
wait-timeout = "0.2.0"
tempfile = "3.2.0"
2021-02-27 15:33:13 +01:00
[target.'cfg(unix)'.dev-dependencies]
nix = "0.22.0"
2021-02-27 15:33:13 +01:00
[build-dependencies]
2020-03-30 18:43:13 +02:00
clap = { version = "2.33", optional = true }
2019-12-22 16:46:44 +01:00
2020-09-20 19:55:01 +02:00
[profile.release]
lto = true
codegen-units = 1