bat/Cargo.toml

124 lines
3.3 KiB
TOML
Raw Permalink 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"
2023-04-05 23:07:48 +02:00
license = "MIT OR Apache-2.0"
2018-04-21 12:51:43 +02:00
name = "bat"
repository = "https://github.com/sharkdp/bat"
version = "0.24.0"
exclude = ["assets/syntaxes/*", "assets/themes/*"]
2023-10-30 10:49:50 +01:00
build = "build/main.rs"
2023-10-31 04:54:06 +01:00
edition = '2021'
rust-version = "1.70"
2018-04-21 12:51:43 +02:00
2020-03-30 18:43:13 +02:00
[features]
default = ["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.
application = [
"bugreport",
"build-assets",
"git",
"minimal-application",
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
minimal-application = [
"clap",
"etcetera",
"paging",
"regex-onig",
"wild",
]
git = ["git2"] # Support indicating git modifications
2021-10-17 06:34:49 +02:00
paging = ["shell-words", "grep-cli"] # Support applying a pager on the output
lessopen = ["run_script", "os_str_bytes"] # Support $LESSOPEN preprocessor
build-assets = ["syntect/yaml-load", "syntect/plist-load", "regex", "walkdir"]
# 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]
nu-ansi-term = "0.50.0"
ansi_colours = "^1.2"
bincode = "1.0"
console = "0.15.8"
flate2 = "1.0"
once_cell = "1.19"
thiserror = "1.0"
wild = { version = "2.2", optional = true }
content_inspector = "0.2.4"
shell-words = { version = "1.1.0", optional = true }
unicode-width = "0.1.11"
globset = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde_yaml = "0.9.28"
semver = "1.0"
path_abs = { version = "0.5", default-features = false }
clircle = "0.5"
bugreport = { version = "0.5.0", optional = true }
etcetera = { version = "0.8.0", optional = true }
grep-cli = { version = "0.1.10", optional = true }
regex = { version = "1.10.2", optional = true }
walkdir = { version = "2.4", optional = true }
bytesize = { version = "1.3.0" }
encoding_rs = "0.8.33"
os_str_bytes = { version = "~7.0", optional = true }
run_script = { version = "^0.10.1", optional = true}
2018-04-21 12:51:43 +02:00
2018-05-02 20:01:43 +02:00
[dependencies.git2]
version = "0.18"
optional = true
2018-05-02 20:01:43 +02:00
default-features = false
2018-04-30 13:01:29 +02:00
[dependencies.syntect]
version = "5.2.0"
2018-04-30 13:01:29 +02:00
default-features = false
features = ["parsing"]
2018-04-30 13:01:29 +02:00
2018-04-21 12:51:43 +02:00
[dependencies.clap]
version = "4.4.12"
2020-03-30 18:43:13 +02:00
optional = true
features = ["wrap_help", "cargo"]
[target.'cfg(target_os = "macos")'.dependencies]
home = "0.5.9"
plist = "1.6.0"
[dev-dependencies]
assert_cmd = "2.0.12"
expect-test = "1.4.1"
2023-04-05 21:40:00 +02:00
serial_test = { version = "2.0.0", default-features = false }
predicates = "3.1.0"
wait-timeout = "0.2.0"
tempfile = "3.8.1"
serde = { version = "1.0", features = ["derive"] }
2021-02-27 15:33:13 +01:00
[target.'cfg(unix)'.dev-dependencies]
nix = { version = "0.26.4", default-features = false, features = ["term"] }
2021-02-27 15:33:13 +01:00
2023-10-31 06:45:40 +01:00
[build-dependencies]
anyhow = "1.0.78"
indexmap = { version = "2.2.6", features = ["serde"] }
itertools = "0.12.1"
once_cell = "1.18"
regex = "1.10.2"
serde = "1.0"
serde_derive = "1.0"
serde_with = { version = "3.8.1", default-features = false, features = ["macros"] }
toml = { version = "0.8.9", features = ["preserve_order"] }
2023-11-02 09:27:26 +01:00
walkdir = "2.4"
2023-10-31 06:45:40 +01:00
[build-dependencies.clap]
version = "4.4.12"
optional = true
features = ["wrap_help", "cargo"]
2019-12-22 16:46:44 +01:00
2020-09-20 19:55:01 +02:00
[profile.release]
lto = true
strip = true
2020-09-20 19:55:01 +02:00
codegen-units = 1