From 11986547cbe772fa0bb863cefc3fff7877d1a6d5 Mon Sep 17 00:00:00 2001 From: Nick Senger Date: Mon, 18 Apr 2022 08:51:49 -0700 Subject: add example --- examples/pure/stateless_component/Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 examples/pure/stateless_component/Cargo.toml (limited to 'examples/pure/stateless_component/Cargo.toml') diff --git a/examples/pure/stateless_component/Cargo.toml b/examples/pure/stateless_component/Cargo.toml new file mode 100644 index 00000000..d89ebf85 --- /dev/null +++ b/examples/pure/stateless_component/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "stateless_component" +version = "0.1.0" +authors = ["Héctor Ramón Jiménez "] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../../..", features = ["debug", "pure"] } +iced_native = { path = "../../../native" } +iced_lazy = { path = "../../../lazy", features = ["pure"] } +iced_pure = { path = "../../../pure" } -- cgit