diff options
author | 2021-11-07 18:15:01 +0700 | |
---|---|---|
committer | 2021-11-29 15:04:12 +0700 | |
commit | bffa7203dfd333b699bc29a22c74fb602eea4ea1 (patch) | |
tree | 6e9315aa6bcb52cf0b95a0698c88b7aecde79186 /lazy/Cargo.toml | |
parent | d9f970ffd5af6dafb5e696ad317d9ea7b997eb4b (diff) | |
download | iced-bffa7203dfd333b699bc29a22c74fb602eea4ea1.tar.gz iced-bffa7203dfd333b699bc29a22c74fb602eea4ea1.tar.bz2 iced-bffa7203dfd333b699bc29a22c74fb602eea4ea1.zip |
Create `iced_lazy` and draft `Component` trait
Diffstat (limited to 'lazy/Cargo.toml')
-rw-r--r-- | lazy/Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lazy/Cargo.toml b/lazy/Cargo.toml new file mode 100644 index 00000000..b840de50 --- /dev/null +++ b/lazy/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "iced_lazy" +version = "0.1.0" +edition = "2021" + +[dependencies] +ouroboros = "0.13" + +[dependencies.iced_native] +version = "0.4" +path = "../native" |