diff options
author | 2022-04-06 10:27:45 -0700 | |
---|---|---|
committer | 2022-04-06 13:16:17 -0700 | |
commit | 5cc1aa31c774894d9a48ee005e857913c9720908 (patch) | |
tree | ca508ddf2cdd73cacbf0642476930f2299f07a17 /examples/pure/nested_component/Cargo.toml | |
parent | 3042fa2cb63c651ebed2abe6f4054e61f70b0331 (diff) | |
download | iced-5cc1aa31c774894d9a48ee005e857913c9720908.tar.gz iced-5cc1aa31c774894d9a48ee005e857913c9720908.tar.bz2 iced-5cc1aa31c774894d9a48ee005e857913c9720908.zip |
add example
Diffstat (limited to 'examples/pure/nested_component/Cargo.toml')
-rw-r--r-- | examples/pure/nested_component/Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
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 <hector0193@gmail.com>"] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../../..", features = ["debug", "pure"] } +iced_native = { path = "../../../native" } +iced_lazy = { path = "../../../lazy", features = ["pure"] } +iced_pure = { path = "../../../pure" } |