From 552077bd8e5b07e4a03eca5bac02051b66261534 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Fri, 23 Feb 2024 16:04:47 +0100 Subject: [PATCH] chore: add `web-colors` feature from iced --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3e8929df..cc2ad77d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,6 +45,8 @@ wayland = [ ] # multi-window support multi-window = ["iced/multi-window"] +# Enable web-colors in iced +web-colors = ["iced/web-colors"] # Render with wgpu wgpu = ["iced/wgpu", "iced_wgpu"] # X11 window support via winit @@ -90,7 +92,7 @@ path = "cosmic-theme" [dependencies.iced] path = "./iced" default-features = false -features = ["advanced", "image", "svg", "lazy"] +features = ["advanced", "image", "lazy", "svg"] [dependencies.iced_runtime] path = "./iced/runtime"