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;