diff --git a/Cargo.toml b/Cargo.toml index a786d40b..5ef1a34c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,9 +7,8 @@ edition = "2021" name = "cosmic" [features] -default = ["tiny_skia", "wayland", "applet", "tokio", "a11y", "lazy"] +default = ["tiny_skia", "wayland", "applet", "tokio", "a11y"] debug = ["iced/debug"] -lazy = ["iced/lazy"] a11y = ["iced/a11y", "iced_accessibility"] tiny_skia = ["iced/tiny-skia", "iced_tiny_skia"] wayland = ["iced/wayland", "iced_sctk"] @@ -40,7 +39,7 @@ git = "https://github.com/pop-os/cosmic-theme.git" [dependencies.iced] path = "iced" default-features = false -features = ["image", "svg"] +features = ["image", "svg", "lazy"] [dependencies.iced_core] path = "iced/core" diff --git a/examples/cosmic-sctk/Cargo.toml b/examples/cosmic-sctk/Cargo.toml index 03c3b1b7..f6d3da38 100644 --- a/examples/cosmic-sctk/Cargo.toml +++ b/examples/cosmic-sctk/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" publish = false [dependencies] -libcosmic = { path = "../..", default-features = false, features = ["wayland", "tokio", "tiny_skia", "a11y", "lazy"] } +libcosmic = { path = "../..", default-features = false, features = ["wayland", "tokio", "tiny_skia", "a11y"] } diff --git a/examples/cosmic/Cargo.toml b/examples/cosmic/Cargo.toml index cdd2b98d..7be94b52 100644 --- a/examples/cosmic/Cargo.toml +++ b/examples/cosmic/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] apply = "0.3.0" fraction = "0.13.0" -libcosmic = { path = "../..", default-features = false, features = ["debug", "winit_tiny_skia", "a11y", "lazy"] } +libcosmic = { path = "../..", default-features = false, features = ["debug", "winit_tiny_skia", "a11y"] } once_cell = "1.15" slotmap = "1.0.6" env_logger = "0.10"