From 9aefd9b9d36ae988aba5f79ded22c6d8903a758a Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Tue, 2 Dec 2025 20:24:19 +0100 Subject: [PATCH] fix(cargo): no-default-features -> default-feature --- subscriptions/sound/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subscriptions/sound/Cargo.toml b/subscriptions/sound/Cargo.toml index db640e5..03b6892 100644 --- a/subscriptions/sound/Cargo.toml +++ b/subscriptions/sound/Cargo.toml @@ -11,8 +11,8 @@ cosmic-pipewire = { path = "../../crates/cosmic-pipewire" } crossbeam-queue = "0.3.12" futures = "0.3.31" intmap = "3.1.2" -libcosmic = { git = "https://github.com/pop-os/libcosmic", no-default-features = true } +libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false } numtoa = "1.0.0-alpha1" rustix = "1.0.8" tokio = { version = "1.47.1", features = ["process", "rt", "time"] } -tracing = { version = "0.1.41", no-default-features = true } +tracing = { version = "0.1.41", default-features = false }