diff options
author | 2022-08-06 00:32:57 +0200 | |
---|---|---|
committer | 2022-08-06 00:32:57 +0200 | |
commit | 1923dbf7f0769d55e5283f572fde0ce752e28b86 (patch) | |
tree | 7be9b36f941f6e13ddc8884f715c04555b1e77db /Cargo.toml | |
parent | 1b4f38c71f6e05e26599ee75ea9c91dde96e71ae (diff) | |
parent | c23ed7e4a0a2b62a0d7cabe6e35d7323eac543d2 (diff) | |
download | iced-1923dbf7f0769d55e5283f572fde0ce752e28b86.tar.gz iced-1923dbf7f0769d55e5283f572fde0ce752e28b86.tar.bz2 iced-1923dbf7f0769d55e5283f572fde0ce752e28b86.zip |
Merge pull request #1393 from iced-rs/deprecate-stateful-widgets
Replace stateful widgets with the new `iced_pure` API
Diffstat (limited to '')
-rw-r--r-- | Cargo.toml | 15 |
1 files changed, 1 insertions, 14 deletions
@@ -40,8 +40,6 @@ async-std = ["iced_futures/async-std"] smol = ["iced_futures/smol"] # Enables advanced color conversion via `palette` palette = ["iced_core/palette"] -# Enables pure, virtual widgets in the `pure` module -pure = ["iced_pure", "iced_graphics/pure"] # Enables querying system information system = ["iced_winit/system"] @@ -57,10 +55,10 @@ members = [ "glutin", "lazy", "native", - "pure", "style", "wgpu", "winit", + "examples/arc", "examples/bezier_tool", "examples/clock", "examples/color_palette", @@ -90,16 +88,6 @@ members = [ "examples/tour", "examples/url_handler", "examples/websocket", - "examples/pure/arc", - "examples/pure/color_palette", - "examples/pure/component", - "examples/pure/counter", - "examples/pure/game_of_life", - "examples/pure/pane_grid", - "examples/pure/pick_list", - "examples/pure/todos", - "examples/pure/tooltip", - "examples/pure/tour", ] [dependencies] @@ -110,7 +98,6 @@ iced_graphics = { version = "0.3", path = "graphics" } iced_winit = { version = "0.4", path = "winit" } iced_glutin = { version = "0.3", path = "glutin", optional = true } iced_glow = { version = "0.3", path = "glow", optional = true } -iced_pure = { version = "0.2", path = "pure", optional = true } thiserror = "1.0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] |