mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-22 15:53:29 +01:00
Remove cargo feature
This commit is contained in:
parent
6498615f5f
commit
e8ca6ec7c3
@ -13,7 +13,7 @@ edition = '2021'
|
|||||||
rust-version = "1.70"
|
rust-version = "1.70"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["application", "detect-color-scheme"]
|
default = ["application"]
|
||||||
# Feature required for bat the application. Should be disabled when depending on
|
# Feature required for bat the application. Should be disabled when depending on
|
||||||
# bat as a library.
|
# bat as a library.
|
||||||
application = [
|
application = [
|
||||||
@ -35,7 +35,6 @@ git = ["git2"] # Support indicating git modifications
|
|||||||
paging = ["shell-words", "grep-cli"] # Support applying a pager on the output
|
paging = ["shell-words", "grep-cli"] # Support applying a pager on the output
|
||||||
lessopen = ["run_script", "os_str_bytes"] # Support $LESSOPEN preprocessor
|
lessopen = ["run_script", "os_str_bytes"] # Support $LESSOPEN preprocessor
|
||||||
build-assets = ["syntect/yaml-load", "syntect/plist-load", "regex", "walkdir"]
|
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:
|
# 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-onig = ["syntect/regex-onig"] # Use the "oniguruma" regex engine
|
||||||
@ -69,7 +68,7 @@ bytesize = { version = "1.3.0" }
|
|||||||
encoding_rs = "0.8.34"
|
encoding_rs = "0.8.34"
|
||||||
os_str_bytes = { version = "~7.0", optional = true }
|
os_str_bytes = { version = "~7.0", optional = true }
|
||||||
run_script = { version = "^0.10.1", optional = true}
|
run_script = { version = "^0.10.1", optional = true}
|
||||||
terminal-colorsaurus = { version = "0.4", optional = true }
|
terminal-colorsaurus = "0.4"
|
||||||
|
|
||||||
[dependencies.git2]
|
[dependencies.git2]
|
||||||
version = "0.18"
|
version = "0.18"
|
||||||
|
12
src/theme.rs
12
src/theme.rs
@ -124,7 +124,6 @@ trait ColorSchemeDetector {
|
|||||||
|
|
||||||
struct TerminalColorSchemeDetector;
|
struct TerminalColorSchemeDetector;
|
||||||
|
|
||||||
#[cfg(feature = "detect-color-scheme")]
|
|
||||||
impl ColorSchemeDetector for TerminalColorSchemeDetector {
|
impl ColorSchemeDetector for TerminalColorSchemeDetector {
|
||||||
fn should_detect(&self) -> bool {
|
fn should_detect(&self) -> bool {
|
||||||
// Querying the terminal for its colors via OSC 10 / OSC 11 requires "exclusive" access
|
// Querying the terminal for its colors via OSC 10 / OSC 11 requires "exclusive" access
|
||||||
@ -148,17 +147,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)]
|
#[cfg(test)]
|
||||||
impl ColorSchemeDetector for Option<ColorScheme> {
|
impl ColorSchemeDetector for Option<ColorScheme> {
|
||||||
fn should_detect(&self) -> bool {
|
fn should_detect(&self) -> bool {
|
||||||
|
Loading…
Reference in New Issue
Block a user