From e16c6f0821bd7b3dba84e56a50daa1ee712b7408 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Fri, 12 May 2023 13:18:49 -0400 Subject: [PATCH] re-export iced_runtime & iced_widget --- Cargo.toml | 3 +++ src/lib.rs | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9346877b..dbbb4611 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,6 +41,9 @@ path = "iced" default-features = false features = ["image", "svg", "lazy"] +[dependencies.iced_runtime] +path = "iced/runtime" + [dependencies.iced_core] path = "iced/core" diff --git a/src/lib.rs b/src/lib.rs index f5ddcede..96f60865 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,9 +5,11 @@ pub use cosmic_theme; pub use iced; +pub use iced_runtime; #[cfg(feature = "wayland")] pub use iced_sctk; pub use iced_style; +pub use iced_widget; #[cfg(feature = "winit")] pub use iced_winit;