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:
parent
ce713d9da7
commit
5765053ad7
2 changed files with 10 additions and 0 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue