chore(dev): activate [patch.libcosmic] + version marker +perf-bundle-v2

Includes silencing unused-var warning in network-manager subscription
(ap -> _ap). Pre-yoda-fork snapshot.
This commit is contained in:
Lionel DARNIS 2026-04-22 21:14:48 +02:00
parent a679d056b9
commit 051f4f9e2c
4 changed files with 24 additions and 8 deletions

18
Cargo.lock generated
View file

@ -1660,7 +1660,7 @@ dependencies = [
[[package]] [[package]]
name = "cosmic-settings" name = "cosmic-settings"
version = "1.0.2" version = "1.0.2+perf-bundle-v2"
dependencies = [ dependencies = [
"accounts-zbus", "accounts-zbus",
"anyhow", "anyhow",
@ -9591,3 +9591,19 @@ dependencies = [
"syn 2.0.114", "syn 2.0.114",
"winnow 0.7.14", "winnow 0.7.14",
] ]
[[patch.unused]]
name = "cosmic-config"
version = "1.0.0"
[[patch.unused]]
name = "cosmic-theme"
version = "1.0.0"
[[patch.unused]]
name = "iced_futures"
version = "0.14.0"
[[patch.unused]]
name = "libcosmic"
version = "1.0.0"

View file

@ -62,11 +62,11 @@ debug = true
# cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon//", branch = "input_nobuild" } # cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon//", branch = "input_nobuild" }
# For development and testing purposes # For development and testing purposes
# [patch.'https://github.com/pop-os/libcosmic'] [patch.'https://github.com/pop-os/libcosmic']
# libcosmic = { path = "../libcosmic" } libcosmic = { path = "/home/lionel/Devels/libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" } cosmic-config = { path = "/home/lionel/Devels/libcosmic/cosmic-config" }
# cosmic-theme = { path = "../libcosmic/cosmic-theme" } cosmic-theme = { path = "/home/lionel/Devels/libcosmic/cosmic-theme" }
# iced_futures = { path = "../libcosmic/iced/futures" } iced_futures = { path = "/home/lionel/Devels/libcosmic/iced/futures" }
# [patch.'https://github.com/pop-os/dbus-settings-bindings'] # [patch.'https://github.com/pop-os/dbus-settings-bindings']
# cosmic-dbus-networkmanager = { path = "../dbus-settings-bindings/networkmanager" } # cosmic-dbus-networkmanager = { path = "../dbus-settings-bindings/networkmanager" }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "cosmic-settings" name = "cosmic-settings"
version = "1.0.2" version = "1.0.2+perf-bundle-v2"
edition = "2024" edition = "2024"
license = "GPL-3.0-only" license = "GPL-3.0-only"
publish = false publish = false

View file

@ -925,7 +925,7 @@ impl NetworkManagerState {
} }
} }
let Some(ap) = self let Some(_ap) = self
.wireless_access_points .wireless_access_points
.iter() .iter()
.find(|ap| ap.ssid.as_ref() == ssid && ap.hw_address == hw_address) .find(|ap| ap.ssid.as_ref() == ssid && ap.hw_address == hw_address)