2018-04-21 10:51:43 +00:00
|
|
|
[package]
|
|
|
|
authors = ["David Peter <mail@david-peter.de>"]
|
|
|
|
categories = ["command-line-utilities"]
|
2021-02-16 07:50:41 +00:00
|
|
|
description = "A cat(1) clone with wings."
|
2018-04-21 10:51:43 +00:00
|
|
|
homepage = "https://github.com/sharkdp/bat"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
name = "bat"
|
|
|
|
repository = "https://github.com/sharkdp/bat"
|
2022-05-10 15:33:49 +00:00
|
|
|
version = "0.21.0"
|
2021-02-16 07:50:41 +00:00
|
|
|
exclude = ["assets/syntaxes/*", "assets/themes/*"]
|
2018-10-03 07:39:30 +00:00
|
|
|
build = "build.rs"
|
2019-03-08 10:48:22 +00:00
|
|
|
edition = '2018'
|
2018-04-21 10:51:43 +00:00
|
|
|
|
2020-03-30 16:43:13 +00:00
|
|
|
[features]
|
2021-08-10 20:18:47 +00:00
|
|
|
default = ["application"]
|
2020-03-30 16:43:13 +00:00
|
|
|
# Feature required for bat the application. Should be disabled when depending on
|
|
|
|
# bat as a library.
|
2021-08-10 20:18:47 +00:00
|
|
|
application = [
|
2021-08-08 04:12:45 +00:00
|
|
|
"bugreport",
|
2021-08-10 20:18:47 +00:00
|
|
|
"build-assets",
|
2020-03-30 17:37:29 +00:00
|
|
|
"git",
|
2021-08-10 20:18:47 +00:00
|
|
|
"minimal-application",
|
2020-03-30 16:43:13 +00:00
|
|
|
]
|
2021-08-08 04:35:34 +00:00
|
|
|
# Mainly for developers that want to iterate quickly
|
|
|
|
# Be aware that the included features might change in the future
|
2021-08-10 20:18:47 +00:00
|
|
|
minimal-application = [
|
2021-08-08 04:35:34 +00:00
|
|
|
"atty",
|
|
|
|
"clap",
|
|
|
|
"dirs-next",
|
|
|
|
"paging",
|
|
|
|
"regex-onig",
|
|
|
|
"wild",
|
|
|
|
]
|
2020-03-30 17:37:29 +00:00
|
|
|
git = ["git2"] # Support indicating git modifications
|
2021-10-17 04:34:49 +00:00
|
|
|
paging = ["shell-words", "grep-cli"] # Support applying a pager on the output
|
2022-05-07 11:43:11 +00:00
|
|
|
build-assets = ["syntect/yaml-load", "syntect/plist-load", "regex", "walkdir"]
|
2021-01-10 20:18:50 +00:00
|
|
|
|
|
|
|
# You need to use one of these if you depend on bat as a library:
|
2020-03-31 07:56:27 +00: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 16:43:13 +00:00
|
|
|
|
2018-04-21 10:51:43 +00:00
|
|
|
[dependencies]
|
2020-03-30 16:43:13 +00:00
|
|
|
atty = { version = "0.2.14", optional = true }
|
2019-09-03 06:07:42 +00:00
|
|
|
ansi_term = "^0.12.1"
|
2022-02-07 05:33:17 +00:00
|
|
|
ansi_colours = "^1.1"
|
2021-09-07 15:21:48 +00:00
|
|
|
bincode = "1.0"
|
2021-11-01 03:03:39 +00:00
|
|
|
console = "0.15.0"
|
2021-09-07 15:21:48 +00:00
|
|
|
flate2 = "1.0"
|
2022-06-01 02:06:47 +00:00
|
|
|
once_cell = "1.12"
|
2021-08-26 11:12:21 +00:00
|
|
|
thiserror = "1.0"
|
2020-03-30 16:43:13 +00:00
|
|
|
wild = { version = "2.0", optional = true }
|
2018-11-05 07:01:52 +00:00
|
|
|
content_inspector = "0.2.4"
|
2018-10-07 14:44:59 +00:00
|
|
|
encoding = "0.2"
|
2022-03-01 03:04:06 +00:00
|
|
|
shell-words = { version = "1.1.0", optional = true }
|
2021-10-02 09:54:21 +00:00
|
|
|
unicode-width = "0.1.9"
|
2020-03-22 08:55:13 +00:00
|
|
|
globset = "0.4"
|
2020-04-21 15:19:07 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-04-21 13:50:46 +00:00
|
|
|
serde_yaml = "0.8"
|
2021-08-01 02:10:34 +00:00
|
|
|
semver = "1.0"
|
2020-05-26 05:50:52 +00:00
|
|
|
path_abs = { version = "0.5", default-features = false }
|
2021-02-27 14:32:07 +00:00
|
|
|
clircle = "0.3"
|
2022-04-02 17:46:43 +00:00
|
|
|
bugreport = { version = "0.5.0", optional = true }
|
2021-02-16 07:50:41 +00:00
|
|
|
dirs-next = { version = "2.0.0", optional = true }
|
2021-10-17 04:34:49 +00:00
|
|
|
grep-cli = { version = "0.1.6", optional = true }
|
2022-06-01 02:06:29 +00:00
|
|
|
regex = { version = "1.5.6", optional = true }
|
2021-12-11 13:00:45 +00:00
|
|
|
walkdir = { version = "2.0", optional = true }
|
2022-02-07 19:48:57 +00:00
|
|
|
bytesize = { version = "1.1.0" }
|
2018-04-21 10:51:43 +00:00
|
|
|
|
2018-05-02 18:01:43 +00:00
|
|
|
[dependencies.git2]
|
2022-03-01 03:04:19 +00:00
|
|
|
version = "0.14"
|
2020-03-30 17:37:29 +00:00
|
|
|
optional = true
|
2018-05-02 18:01:43 +00:00
|
|
|
default-features = false
|
|
|
|
|
2018-04-30 11:01:29 +00:00
|
|
|
[dependencies.syntect]
|
2022-05-07 11:43:11 +00:00
|
|
|
version = "5.0.0"
|
2018-04-30 11:01:29 +00:00
|
|
|
default-features = false
|
2021-09-07 15:21:48 +00:00
|
|
|
features = ["parsing"]
|
2018-04-30 11:01:29 +00:00
|
|
|
|
2018-04-21 10:51:43 +00:00
|
|
|
[dependencies.clap]
|
2021-12-01 03:02:38 +00:00
|
|
|
version = "2.34"
|
2020-03-30 16:43:13 +00:00
|
|
|
optional = true
|
2018-04-21 10:51:43 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["suggestions", "color", "wrap_help"]
|
2018-05-10 12:36:05 +00:00
|
|
|
|
2018-06-02 16:06:40 +00:00
|
|
|
[dev-dependencies]
|
2022-02-01 03:02:34 +00:00
|
|
|
assert_cmd = "2.0.4"
|
2022-03-01 05:57:40 +00:00
|
|
|
serial_test = "0.6.0"
|
2022-03-01 03:04:15 +00:00
|
|
|
predicates = "2.1.1"
|
2021-01-05 09:55:22 +00:00
|
|
|
wait-timeout = "0.2.0"
|
2022-02-01 03:02:59 +00:00
|
|
|
tempfile = "3.3.0"
|
2018-10-03 07:39:30 +00:00
|
|
|
|
2021-02-27 14:33:13 +00:00
|
|
|
[target.'cfg(unix)'.dev-dependencies]
|
2022-05-01 17:12:00 +00:00
|
|
|
nix = { version = "0.24.1", default-features = false, features = ["term"] }
|
2021-02-27 14:33:13 +00:00
|
|
|
|
2018-10-03 07:39:30 +00:00
|
|
|
[build-dependencies]
|
2021-12-01 03:02:38 +00:00
|
|
|
clap = { version = "2.34", optional = true }
|
2019-12-22 15:46:44 +00:00
|
|
|
|
2020-09-20 17:55:01 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|