Expose internal iced crates for cosmic-time (#110)

This allows cosmic-time to use all imports via libcosmic, so the
versions of iced will not collide.
This commit is contained in:
Brock 2023-06-01 16:12:57 -06:00 committed by GitHub
parent ce713d9da7
commit 5765053ad7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View file

@ -14,6 +14,7 @@ tiny_skia = ["iced/tiny-skia", "iced_tiny_skia"]
wayland = ["iced/wayland", "iced_sctk", "sctk",]
wgpu = ["iced/wgpu", "iced_wgpu"]
tokio = ["dep:tokio", "iced/tokio"]
smol = ["iced/smol"]
winit = ["iced/winit", "iced_winit"]
winit_tiny_skia = ["winit", "tiny_skia"]
winit_wgpu = ["winit", "wgpu"]
@ -43,12 +44,18 @@ features = ["image", "svg", "lazy"]
[dependencies.iced_runtime]
path = "iced/runtime"
[dependencies.iced_renderer]
path = "iced/renderer"
[dependencies.iced_core]
path = "iced/core"
[dependencies.iced_widget]
path = "iced/widget"
[dependencies.iced_futures]
path = "iced/futures"
[dependencies.iced_accessibility]
path = "iced/accessibility"

View file

@ -6,6 +6,9 @@
pub use cosmic_config;
pub use cosmic_theme;
pub use iced;
pub use iced_core;
pub use iced_futures;
pub use iced_renderer;
pub use iced_runtime;
#[cfg(feature = "wayland")]
pub use iced_sctk;