From c775c6530484ac1e08fe6f5feb301220b93ac1f3 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Wed, 13 Sep 2023 17:10:47 +0200 Subject: [PATCH] fix(cargo): features `winit_debug` and `winit_tokio` now depend on `winit` feature --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9581498d..ef31ba41 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,8 +25,8 @@ wayland = ["ashpd?/wayland", "iced_runtime/wayland", "iced/wayland", "iced_sctk" wgpu = ["iced/wgpu", "iced_wgpu"] # X11 window support via winit winit = ["iced/winit", "iced_winit"] -winit_debug = ["iced/winit", "iced_winit", "debug"] -winit_tokio = ["iced/winit", "iced_winit", "tokio"] +winit_debug = ["winit", "debug"] +winit_tokio = ["winit", "tokio"] winit_wgpu = ["winit", "wgpu"] # Enables XDG portal integrations xdg-portal = ["ashpd"]