From bffa7203dfd333b699bc29a22c74fb602eea4ea1 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 7 Nov 2021 18:15:01 +0700 Subject: Create `iced_lazy` and draft `Component` trait --- lazy/Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lazy/Cargo.toml (limited to 'lazy/Cargo.toml') 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" -- cgit