summaryrefslogtreecommitdiffstats
path: root/lazy/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Nick Senger <nicks@lich.io>2022-08-04 21:25:36 -0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-11-03 02:23:19 +0100
commit71381418116afc1f9c40c8faf2cb1e53072a1cfa (patch)
treef8c3937d3951656f7c8ed0468f218d9623e24a32 /lazy/src/lib.rs
parent08e28f6f97c7e656f0d2f1d3fb0f6fe3c280d464 (diff)
downloadiced-71381418116afc1f9c40c8faf2cb1e53072a1cfa.tar.gz
iced-71381418116afc1f9c40c8faf2cb1e53072a1cfa.tar.bz2
iced-71381418116afc1f9c40c8faf2cb1e53072a1cfa.zip
feat: implement `Cached` widget
Diffstat (limited to '')
-rw-r--r--lazy/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/lazy/src/lib.rs b/lazy/src/lib.rs
index 3827746c..c01b439b 100644
--- a/lazy/src/lib.rs
+++ b/lazy/src/lib.rs
@@ -17,9 +17,11 @@
clippy::type_complexity
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
+pub mod cached;
pub mod component;
pub mod responsive;
+pub use cached::Cached;
pub use component::Component;
pub use responsive::Responsive;