From 5cc1aa31c774894d9a48ee005e857913c9720908 Mon Sep 17 00:00:00 2001 From: Nick Senger Date: Wed, 6 Apr 2022 10:27:45 -0700 Subject: add example --- examples/pure/nested_component/Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 examples/pure/nested_component/Cargo.toml (limited to 'examples/pure/nested_component/Cargo.toml') diff --git a/examples/pure/nested_component/Cargo.toml b/examples/pure/nested_component/Cargo.toml new file mode 100644 index 00000000..6b1b3570 --- /dev/null +++ b/examples/pure/nested_component/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "pure_nested_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