From 927e1a99d28ef4dc89f9df0f9e56ee40607d739b Mon Sep 17 00:00:00 2001 From: Cory Forsstrom Date: Thu, 5 May 2022 08:56:24 -0700 Subject: Expose pure flex module as public --- pure/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pure') diff --git a/pure/src/lib.rs b/pure/src/lib.rs index 6af74771..fa5fd46f 100644 --- a/pure/src/lib.rs +++ b/pure/src/lib.rs @@ -87,12 +87,11 @@ #![forbid(unsafe_code)] #![forbid(rust_2018_idioms)] +pub mod flex; pub mod helpers; pub mod overlay; pub mod widget; -pub(crate) mod flex; - mod element; pub use element::Element; -- cgit