From 71381418116afc1f9c40c8faf2cb1e53072a1cfa Mon Sep 17 00:00:00 2001 From: Nick Senger Date: Thu, 4 Aug 2022 21:25:36 -0700 Subject: feat: implement `Cached` widget --- lazy/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lazy/src/lib.rs') 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; -- cgit