diff --git a/Cargo.lock b/Cargo.lock index cf81ffb..0db173a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -740,12 +740,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "discard" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" - [[package]] name = "dlib" version = "0.5.2" @@ -1012,22 +1006,6 @@ dependencies = [ "syn 2.0.48", ] -[[package]] -name = "futures-signals" -version = "0.3.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b175f2f6600dd81d92d20cf10872b03ea9df6b2513ca7f672341260dacb1ab2" -dependencies = [ - "discard", - "futures-channel", - "futures-core", - "futures-util", - "gensym", - "log", - "pin-project", - "serde", -] - [[package]] name = "futures-sink" version = "0.3.30" @@ -1126,18 +1104,6 @@ dependencies = [ "version_check", ] -[[package]] -name = "gensym" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "913dce4c5f06c2ea40fc178c06f777ac89fc6b1383e90c254fafb1abe4ba3c82" -dependencies = [ - "proc-macro2", - "quote 1.0.35", - "syn 2.0.48", - "uuid", -] - [[package]] name = "getrandom" version = "0.2.9" @@ -1648,7 +1614,6 @@ dependencies = [ "ctrlc", "dirs", "futures-lite 2.3.0", - "futures-signals", "futures-util", "glib", "gtk", @@ -3600,15 +3565,6 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" -[[package]] -name = "uuid" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" -dependencies = [ - "getrandom", -] - [[package]] name = "valuable" version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index a29150b..6be1241 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,6 @@ default = [ "ipc", "launcher", "music+all", - "networkmanager", "notifications", "sys_info", "tray", @@ -62,8 +61,6 @@ music = ["regex"] "music+mpris" = ["music", "mpris"] "music+mpd" = ["music", "mpd-utils"] -networkmanager = ["futures-lite", "futures-signals", "zbus"] - notifications = ["zbus"] sys_info = ["sysinfo", "regex"] @@ -139,9 +136,6 @@ chrono = { version = "0.4.38", optional = true, default-features = false, featur mpd-utils = { version = "0.2.1", optional = true } mpris = { version = "2.0.1", optional = true } -# networkmanager -futures-signals = { version = "0.3.33", optional = true } - # sys_info sysinfo = { version = "0.29.11", optional = true } @@ -160,11 +154,11 @@ hyprland = { version = "0.4.0-alpha.2", features = ["silent"], optional = true } futures-util = { version = "0.3.30", optional = true } # shared -futures-lite = { version = "2.3.0", optional = true } # networkmanager, upower, workspaces +futures-lite = { version = "2.3.0", optional = true } # workspaces, upower regex = { version = "1.10.5", default-features = false, features = [ "std", ], optional = true } # music, sys_info -zbus = { version = "3.15.2", default-features = false, features = ["tokio"], optional = true } # networkmanager, notifications, upower +zbus = { version = "3.15.2", default-features = false, features = ["tokio"], optional = true } # notifications, upower # schema schemars = { version = "0.8.21", optional = true }