Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -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"

Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down