From ff2519b1d43d481987351a83b6dd7237524c21f0 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 27 Jul 2022 06:49:20 +0200 Subject: Replace stateful widgets with new `iced_pure` API --- examples/arc/Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 examples/arc/Cargo.toml (limited to 'examples/arc/Cargo.toml') diff --git a/examples/arc/Cargo.toml b/examples/arc/Cargo.toml new file mode 100644 index 00000000..299f5a3e --- /dev/null +++ b/examples/arc/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "arc" +version = "0.1.0" +authors = ["ThatsNoMoon "] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../../..", features = ["canvas", "tokio", "debug"] } -- cgit From effa6881f725fdfd2087205737484726f3580a43 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 27 Jul 2022 06:57:49 +0200 Subject: Enable `arc` example --- examples/arc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/arc/Cargo.toml') diff --git a/examples/arc/Cargo.toml b/examples/arc/Cargo.toml index 299f5a3e..e6e74363 100644 --- a/examples/arc/Cargo.toml +++ b/examples/arc/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" publish = false [dependencies] -iced = { path = "../../..", features = ["canvas", "tokio", "debug"] } +iced = { path = "../..", features = ["canvas", "tokio", "debug"] } -- cgit