Skip to content

Commit ff2519b

Browse files
committedJul 27, 2022
Replace stateful widgets with new iced_pure API
1 parent c44267b commit ff2519b

File tree

142 files changed

+3585
-14448
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+3585
-14448
lines changed
 

‎Cargo.toml

-14
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ async-std = ["iced_futures/async-std"]
4040
smol = ["iced_futures/smol"]
4141
# Enables advanced color conversion via `palette`
4242
palette = ["iced_core/palette"]
43-
# Enables pure, virtual widgets in the `pure` module
44-
pure = ["iced_pure", "iced_graphics/pure"]
4543
# Enables querying system information
4644
system = ["iced_winit/system"]
4745

@@ -57,7 +55,6 @@ members = [
5755
"glutin",
5856
"lazy",
5957
"native",
60-
"pure",
6158
"style",
6259
"wgpu",
6360
"winit",
@@ -90,16 +87,6 @@ members = [
9087
"examples/tour",
9188
"examples/url_handler",
9289
"examples/websocket",
93-
"examples/pure/arc",
94-
"examples/pure/color_palette",
95-
"examples/pure/component",
96-
"examples/pure/counter",
97-
"examples/pure/game_of_life",
98-
"examples/pure/pane_grid",
99-
"examples/pure/pick_list",
100-
"examples/pure/todos",
101-
"examples/pure/tooltip",
102-
"examples/pure/tour",
10390
]
10491

10592
[dependencies]
@@ -110,7 +97,6 @@ iced_graphics = { version = "0.3", path = "graphics" }
11097
iced_winit = { version = "0.4", path = "winit" }
11198
iced_glutin = { version = "0.3", path = "glutin", optional = true }
11299
iced_glow = { version = "0.3", path = "glow", optional = true }
113-
iced_pure = { version = "0.2", path = "pure", optional = true }
114100
thiserror = "1.0"
115101

116102
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

‎examples/pure/arc/Cargo.toml ‎examples/arc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66
publish = false
77

88
[dependencies]
9-
iced = { path = "../../..", features = ["pure", "canvas", "tokio", "debug"] }
9+
iced = { path = "../../..", features = ["canvas", "tokio", "debug"] }

0 commit comments

Comments
 (0)
Please sign in to comment.