2018-04-21 12:51:43 +02:00
|
|
|
[package]
|
|
|
|
authors = ["David Peter <mail@david-peter.de>"]
|
|
|
|
categories = ["command-line-utilities"]
|
2021-02-16 08:50:41 +01:00
|
|
|
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"
|
Bump version to v0.24.0
We need to bump 0.x.0 because the library API changed in incompatible
ways:
$ cargo public-api diff
Resolved `diff` to `diff 0.23.0`
Removed items from the public API
=================================
(none)
Changed items in the public API
===============================
-pub fn bat::controller::Controller<'b>::run(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>) -> bat::error::Result<bool>
+pub fn bat::controller::Controller<'b>::run(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>, output_buffer: core::option::Option<&mut dyn core::fmt::Write>) -> bat::error::Result<bool>
-pub fn bat::controller::Controller<'b>::run_with_error_handler(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>, handle_error: impl core::ops::function::Fn(&bat::error::Error, &mut dyn std::io::Write)) -> bat::error::Result<bool>
+pub fn bat::controller::Controller<'b>::run_with_error_handler(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>, output_buffer: core::option::Option<&mut dyn core::fmt::Write>, handle_error: impl core::ops::function::Fn(&bat::error::Error, &mut dyn std::io::Write)) -> bat::error::Result<bool>
Added items to the public API
=============================
[...]
2023-10-10 16:54:34 +02:00
|
|
|
version = "0.24.0"
|
2021-02-16 08:50:41 +01:00
|
|
|
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'
|
2023-08-28 16:25:30 +02:00
|
|
|
rust-version = "1.70"
|
2018-04-21 12:51:43 +02:00
|
|
|
|
2020-03-30 18:43:13 +02:00
|
|
|
[features]
|
2021-08-10 22:18:47 +02:00
|
|
|
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.
|
2021-08-10 22:18:47 +02:00
|
|
|
application = [
|
2021-08-08 06:12:45 +02:00
|
|
|
"bugreport",
|
2021-08-10 22:18:47 +02:00
|
|
|
"build-assets",
|
2020-03-30 19:37:29 +02:00
|
|
|
"git",
|
2021-08-10 22:18:47 +02:00
|
|
|
"minimal-application",
|
2020-03-30 18:43:13 +02:00
|
|
|
]
|
2021-08-08 06:35:34 +02:00
|
|
|
# Mainly for developers that want to iterate quickly
|
|
|
|
# Be aware that the included features might change in the future
|
2021-08-10 22:18:47 +02:00
|
|
|
minimal-application = [
|
2021-08-08 06:35:34 +02:00
|
|
|
"clap",
|
2023-04-22 02:11:57 +02:00
|
|
|
"etcetera",
|
2021-08-08 06:35:34 +02:00
|
|
|
"paging",
|
|
|
|
"regex-onig",
|
|
|
|
"wild",
|
|
|
|
]
|
2020-03-30 19:37:29 +02:00
|
|
|
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
|
2023-09-02 08:48:26 +02:00
|
|
|
lessopen = ["run_script", "os_str_bytes"] # Support $LESSOPEN preprocessor
|
2022-05-07 13:43:11 +02:00
|
|
|
build-assets = ["syntect/yaml-load", "syntect/plist-load", "regex", "walkdir"]
|
2021-01-10 21:18:50 +01:00
|
|
|
|
|
|
|
# You need to use one of these if you depend on bat as a library:
|
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]
|
2023-09-01 18:04:46 +02:00
|
|
|
nu-ansi-term = "0.49.0"
|
2023-03-01 04:58:05 +01:00
|
|
|
ansi_colours = "^1.2"
|
2021-09-07 17:21:48 +02:00
|
|
|
bincode = "1.0"
|
2023-10-19 07:54:24 +02:00
|
|
|
console = "0.15.7"
|
2021-09-07 17:21:48 +02:00
|
|
|
flate2 = "1.0"
|
2024-01-01 05:50:36 +01:00
|
|
|
once_cell = "1.19"
|
2021-08-26 13:12:21 +02:00
|
|
|
thiserror = "1.0"
|
2023-10-18 18:06:35 +02:00
|
|
|
wild = { version = "2.2", optional = true }
|
2018-11-05 08:01:52 +01:00
|
|
|
content_inspector = "0.2.4"
|
2022-03-01 04:04:06 +01:00
|
|
|
shell-words = { version = "1.1.0", optional = true }
|
2023-10-17 08:48:32 +02:00
|
|
|
unicode-width = "0.1.11"
|
2020-03-22 09:55:13 +01:00
|
|
|
globset = "0.4"
|
2023-12-28 23:38:35 +01:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2023-12-26 23:02:43 +01:00
|
|
|
serde_yaml = "0.9.28"
|
2021-08-01 04:10:34 +02:00
|
|
|
semver = "1.0"
|
2020-05-26 07:50:52 +02:00
|
|
|
path_abs = { version = "0.5", default-features = false }
|
2024-02-01 06:00:25 +01:00
|
|
|
clircle = "0.5"
|
2022-04-02 19:46:43 +02:00
|
|
|
bugreport = { version = "0.5.0", optional = true }
|
2023-04-22 02:11:57 +02:00
|
|
|
etcetera = { version = "0.8.0", optional = true }
|
2023-12-01 05:01:10 +01:00
|
|
|
grep-cli = { version = "0.1.10", optional = true }
|
2023-10-19 07:26:40 +02:00
|
|
|
regex = { version = "1.10.2", optional = true }
|
2023-10-18 17:11:17 +02:00
|
|
|
walkdir = { version = "2.4", optional = true }
|
2023-10-01 04:58:03 +02:00
|
|
|
bytesize = { version = "1.3.0" }
|
2023-10-04 09:05:20 +02:00
|
|
|
encoding_rs = "0.8.33"
|
2023-10-17 08:12:48 +02:00
|
|
|
os_str_bytes = { version = "~6.6", optional = true }
|
2023-10-18 17:43:17 +02:00
|
|
|
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]
|
2023-09-01 05:43:28 +02:00
|
|
|
version = "0.18"
|
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]
|
2023-12-28 23:38:35 +01:00
|
|
|
version = "5.2.0"
|
2018-04-30 13:01:29 +02:00
|
|
|
default-features = false
|
2021-09-07 17:21:48 +02:00
|
|
|
features = ["parsing"]
|
2018-04-30 13:01:29 +02:00
|
|
|
|
2018-04-21 12:51:43 +02:00
|
|
|
[dependencies.clap]
|
2024-01-01 05:10:40 +01:00
|
|
|
version = "4.4.12"
|
2020-03-30 18:43:13 +02:00
|
|
|
optional = true
|
2022-10-01 02:08:50 +02:00
|
|
|
features = ["wrap_help", "cargo"]
|
2018-05-10 14:36:05 +02:00
|
|
|
|
2023-01-05 20:58:16 +01:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-01-01 05:37:23 +01:00
|
|
|
home = "0.5.9"
|
2023-11-01 05:20:25 +01:00
|
|
|
plist = "1.5.1"
|
2023-01-05 20:58:16 +01:00
|
|
|
|
2018-06-02 18:06:40 +02:00
|
|
|
[dev-dependencies]
|
2023-10-19 08:21:55 +02:00
|
|
|
assert_cmd = "2.0.12"
|
2023-07-01 04:58:07 +02:00
|
|
|
expect-test = "1.4.1"
|
2023-04-05 21:40:00 +02:00
|
|
|
serial_test = { version = "2.0.0", default-features = false }
|
2023-10-17 08:31:56 +02:00
|
|
|
predicates = "3.0.4"
|
2021-01-05 10:55:22 +01:00
|
|
|
wait-timeout = "0.2.0"
|
2023-11-01 04:26:48 +01:00
|
|
|
tempfile = "3.8.1"
|
2023-12-28 23:38:35 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2018-10-03 09:39:30 +02:00
|
|
|
|
2021-02-27 15:33:13 +01:00
|
|
|
[target.'cfg(unix)'.dev-dependencies]
|
2023-10-18 18:48:05 +02:00
|
|
|
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]
|
2024-01-01 04:52:33 +01:00
|
|
|
anyhow = "1.0.78"
|
2024-02-01 05:25:19 +01:00
|
|
|
indexmap = { version = "2.2.2", features = ["serde"] }
|
2023-11-02 12:53:04 +01:00
|
|
|
itertools = "0.11.0"
|
2023-11-02 16:16:04 +01:00
|
|
|
once_cell = "1.18"
|
|
|
|
regex = "1.10.2"
|
2023-12-28 23:38:35 +01:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_with = { version = "3.6.1", default-features = false, features = ["macros"] }
|
2024-02-01 05:43:10 +01:00
|
|
|
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
|
|
|
|
2022-10-01 02:08:50 +02:00
|
|
|
[build-dependencies.clap]
|
2024-01-01 05:10:40 +01:00
|
|
|
version = "4.4.12"
|
2022-10-01 02:08:50 +02:00
|
|
|
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
|
2023-03-16 13:40:34 +01:00
|
|
|
strip = true
|
2020-09-20 19:55:01 +02:00
|
|
|
codegen-units = 1
|