diff options
author | 2022-05-05 08:56:24 -0700 | |
---|---|---|
committer | 2022-05-05 08:56:24 -0700 | |
commit | 927e1a99d28ef4dc89f9df0f9e56ee40607d739b (patch) | |
tree | 84dd1608608d34c56dbccb16add1a5ef47e3f964 | |
parent | 7087a3d75c9b9decca04bf90ac87038b5f527dd6 (diff) | |
download | iced-927e1a99d28ef4dc89f9df0f9e56ee40607d739b.tar.gz iced-927e1a99d28ef4dc89f9df0f9e56ee40607d739b.tar.bz2 iced-927e1a99d28ef4dc89f9df0f9e56ee40607d739b.zip |
Expose pure flex module as public
-rw-r--r-- | pure/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
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; |