From c538311ee0ed9026a7d6fabc00971b306a56fe61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Sun, 2 Nov 2025 01:36:05 +0100 Subject: [PATCH] Remove `iced_debug` dependency from `iced_runtime` --- Cargo.lock | 1 - runtime/Cargo.toml | 1 - runtime/src/lib.rs | 1 - winit/src/lib.rs | 2 +- 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6248192b..a8defc95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2559,7 +2559,6 @@ version = "0.14.0-dev" dependencies = [ "bytes", "iced_core", - "iced_debug", "iced_futures", "iced_selector", "raw-window-handle 0.6.2", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index baddbfa4..26b094d4 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -19,7 +19,6 @@ workspace = true [dependencies] bytes.workspace = true iced_core.workspace = true -iced_debug.workspace = true iced_futures.workspace = true raw-window-handle.workspace = true diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index dd85139f..8b78801a 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -20,7 +20,6 @@ pub mod widget; pub mod window; pub use iced_core as core; -pub use iced_debug as debug; pub use iced_futures as futures; pub use task::Task; diff --git a/winit/src/lib.rs b/winit/src/lib.rs index 3871fd85..be819d3e 100644 --- a/winit/src/lib.rs +++ b/winit/src/lib.rs @@ -18,11 +18,11 @@ html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg" )] #![cfg_attr(docsrs, feature(doc_cfg))] +pub use iced_debug as debug; pub use iced_program as program; pub use program::core; pub use program::graphics; pub use program::runtime; -pub use runtime::debug; pub use runtime::futures; pub use winit;