From 4ce976739e7dcb0a0a00d951e70340190fed9d6f Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Fri, 3 Jan 2025 16:37:40 +0100 Subject: [PATCH] aho_corasick and once_cell no longer optional --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4582b62..70a9760 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,9 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aho-corasick = { version = "1.1.2", optional = true } +aho-corasick = { version = "1.1.2" } 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} paste = { version = "1.0.15", optional = true } ratatui = { version = "0.28.1", optional = true} @@ -37,7 +37,7 @@ database-json = ["serde", "serde_json"] library-beets = [] library-beets-ssh = ["openssh", "tokio"] musicbrainz = ["paste", "reqwest", "serde", "serde_json"] -tui = ["aho-corasick", "crossterm", "once_cell", "ratatui", "tui-input"] +tui = ["crossterm", "ratatui", "tui-input"] [[bin]] name = "musichoard"