From cf2818c4a163caaa6a627e7aa6bcd40e455c7a6a Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld <4404502+Drakulix@users.noreply.github.com> Date: Fri, 2 Jun 2023 14:52:40 +0200 Subject: [PATCH] cosmic-config: Don't pull all of iced (#111) --- cosmic-config/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cosmic-config/Cargo.toml b/cosmic-config/Cargo.toml index 7393fafc..84174405 100644 --- a/cosmic-config/Cargo.toml +++ b/cosmic-config/Cargo.toml @@ -16,6 +16,6 @@ notify = "6.0.0" ron = "0.8.0" serde = "1.0.152" cosmic-config-derive = { path = "../cosmic-config-derive/", optional = true } -iced = { path = "../iced/", optional = true } -iced_futures = { path = "../iced/futures/", optional = true } +iced = { path = "../iced/", default-features = false, optional = true } +iced_futures = { path = "../iced/futures/", default-features = false, optional = true }