diff options
author | 2022-11-03 03:12:23 +0100 | |
---|---|---|
committer | 2022-11-03 03:12:23 +0100 | |
commit | 231d2fd8454eb9d24ba970131d4d7339cc0c8d51 (patch) | |
tree | ff21ac61a872b3581bc0ef385bca99c5fd6d3c0a /examples/lazy/Cargo.toml | |
parent | 3b8669ae94d4d17d3bac0b8ce6d1b019e373253e (diff) | |
parent | 415978b80771fdd065b65e115d1dcc6aaa9d792c (diff) | |
download | iced-231d2fd8454eb9d24ba970131d4d7339cc0c8d51.tar.gz iced-231d2fd8454eb9d24ba970131d4d7339cc0c8d51.tar.bz2 iced-231d2fd8454eb9d24ba970131d4d7339cc0c8d51.zip |
Merge pull request #1400 from nicksenger/lazy/cached
`Lazy` widget
Diffstat (limited to '')
-rw-r--r-- | examples/lazy/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/lazy/Cargo.toml b/examples/lazy/Cargo.toml new file mode 100644 index 00000000..79255c25 --- /dev/null +++ b/examples/lazy/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "lazy" +version = "0.1.0" +authors = ["Nick Senger <dev@nsenger.com>"] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../..", features = ["debug"] } +iced_lazy = { path = "../../lazy" } |