From cb2b0f7b9aab8f13a77ae316dc3de52cfeb054a3 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld <4404502+Drakulix@users.noreply.github.com> Date: Tue, 3 Jan 2023 22:48:53 +0100 Subject: [PATCH] chore: Do not enable iced/tokio features unconditionally --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 08bf09d2..70fc2504 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" name = "cosmic" [features] -default = ["swbuf", "winit"] +default = ["swbuf", "winit", "tokio"] debug = ["iced/debug"] swbuf = ["iced/swbuf", "iced_swbuf"] wayland = ["iced/wayland", "iced_glow"] @@ -32,7 +32,7 @@ git = "https://github.com/pop-os/cosmic-theme.git" [dependencies.iced] path = "iced" default-features = false -features = ["image", "svg", "tokio"] +features = ["image", "svg"] [dependencies.iced_core] path = "iced/core"