aho_corasick and once_cell no longer optional
Some checks failed
Cargo CI / Build and Test (pull_request) Failing after 2m6s
Cargo CI / Lint (pull_request) Successful in 1m8s

This commit is contained in:
Wojciech Kozlowski 2025-01-03 16:37:40 +01:00
parent 7b219933c1
commit 4ce976739e

View File

@ -6,9 +6,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
aho-corasick = { version = "1.1.2", optional = true } aho-corasick = { version = "1.1.2" }
crossterm = { version = "0.28.1", optional = true} crossterm = { version = "0.28.1", optional = true}
once_cell = { version = "1.19.0", optional = true} once_cell = { version = "1.19.0" }
openssh = { version = "0.10.3", features = ["native-mux"], default-features = false, optional = true} openssh = { version = "0.10.3", features = ["native-mux"], default-features = false, optional = true}
paste = { version = "1.0.15", optional = true } paste = { version = "1.0.15", optional = true }
ratatui = { version = "0.28.1", optional = true} ratatui = { version = "0.28.1", optional = true}
@ -37,7 +37,7 @@ database-json = ["serde", "serde_json"]
library-beets = [] library-beets = []
library-beets-ssh = ["openssh", "tokio"] library-beets-ssh = ["openssh", "tokio"]
musicbrainz = ["paste", "reqwest", "serde", "serde_json"] musicbrainz = ["paste", "reqwest", "serde", "serde_json"]
tui = ["aho-corasick", "crossterm", "once_cell", "ratatui", "tui-input"] tui = ["crossterm", "ratatui", "tui-input"]
[[bin]] [[bin]]
name = "musichoard" name = "musichoard"