Remove cargo feature

This commit is contained in:
Tau Gärtli 2024-04-16 14:43:35 +02:00
parent e8ba7be87a
commit 2b26d6b488
No known key found for this signature in database
2 changed files with 2 additions and 15 deletions

View File

@ -13,7 +13,7 @@ edition = '2021'
rust-version = "1.70"
[features]
default = ["application", "detect-color-scheme"]
default = ["application"]
# Feature required for bat the application. Should be disabled when depending on
# bat as a library.
application = [
@ -35,7 +35,6 @@ git = ["git2"] # Support indicating git modifications
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"]
detect-color-scheme = ["dep:terminal-colorsaurus"]
# 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
@ -69,7 +68,7 @@ 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}
terminal-colorsaurus = { version = "0.3.1", optional = true }
terminal-colorsaurus = { version = "0.3.1" }
[dependencies.git2]
version = "0.18"

View File

@ -124,7 +124,6 @@ trait ColorSchemeDetector {
struct TerminalColorSchemeDetector;
#[cfg(feature = "detect-color-scheme")]
impl ColorSchemeDetector for TerminalColorSchemeDetector {
fn should_detect(&self) -> bool {
// Querying the terminal for its colors via OSC 10 / OSC 11 requires "exclusive" access
@ -150,17 +149,6 @@ impl ColorSchemeDetector for TerminalColorSchemeDetector {
}
}
#[cfg(not(feature = "detect-color-scheme"))]
impl ColorSchemeDetector for TerminalColorSchemeDetector {
fn should_detect(&self) -> bool {
false
}
fn detect(&self) -> Option<ColorScheme> {
None
}
}
#[cfg(test)]
impl ColorSchemeDetector for Option<ColorScheme> {
fn should_detect(&self) -> bool {