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/*",
|
|
|
|
]
|
2018-10-03 09:39:30 +02:00
|
|
|
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",
|
2020-03-30 19:37:29 +02:00
|
|
|
"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",
|
2020-03-31 09:56:27 +02:00
|
|
|
"regex-onig",
|
2020-03-30 18:43:13 +02:00
|
|
|
]
|
2020-03-30 19:37:29 +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
|
2020-03-31 09:56:27 +02:00
|
|
|
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"
|
2018-09-21 16:56:09 +02:00
|
|
|
ansi_colours = "^1.0"
|
2020-09-01 04:24:41 +02:00
|
|
|
console = "0.12.0"
|
2020-08-02 22:09:04 +02:00
|
|
|
dirs = { version = "3.0", optional = true }
|
2020-03-30 18:43:13 +02:00
|
|
|
lazy_static = { version = "1.4", optional = true }
|
|
|
|
wild = { version = "2.0", optional = true }
|
2018-11-05 08:01:52 +01:00
|
|
|
content_inspector = "0.2.4"
|
2018-10-07 16:44:59 +02:00
|
|
|
encoding = "0.2"
|
2020-05-24 10:01:40 +02:00
|
|
|
shell-words = { version = "1.0.0", optional = true }
|
2020-07-01 09:13:11 +02:00
|
|
|
unicode-width = "0.1.8"
|
2020-03-22 09:55:13 +01:00
|
|
|
globset = "0.4"
|
2020-04-21 17:19:07 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-04-21 15:50:46 +02:00
|
|
|
serde_yaml = "0.8"
|
2020-06-01 09:56:56 +02:00
|
|
|
semver = "0.10"
|
2020-05-26 07:50:52 +02:00
|
|
|
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"
|
2020-03-30 19:37:29 +02:00
|
|
|
optional = true
|
2018-05-02 20:01:43 +02:00
|
|
|
default-features = false
|
|
|
|
|
2018-04-30 13:01:29 +02:00
|
|
|
[dependencies.syntect]
|
2020-05-24 09:26:57 +02:00
|
|
|
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]
|
2019-04-08 04:16:27 +02:00
|
|
|
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"]
|
2018-05-10 14:36:05 +02:00
|
|
|
|
|
|
|
[dependencies.error-chain]
|
2018-07-23 21:54:30 +02:00
|
|
|
version = "0.12"
|
2018-05-10 14:36:05 +02:00
|
|
|
default-features = false
|
2018-06-02 18:06:40 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempdir = "0.3"
|
2020-04-01 04:42:15 +02:00
|
|
|
assert_cmd = "1.0.1"
|
2020-08-01 04:25:45 +02:00
|
|
|
predicates = "1.0.5"
|
2018-10-03 09:39:30 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2020-03-30 18:43:13 +02:00
|
|
|
clap = { version = "2.33", optional = true }
|
2020-08-01 09:56:21 +02:00
|
|
|
liquid = { version = "0.21", 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
|