From 12c1a3f829c801022d45f1a294d8fc7fa10606e5 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 9 Mar 2022 14:10:15 +0700 Subject: Remove redundant `widget` modules in subcrates Instead, we can define the type aliases just once in the root crate! --- glow/src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'glow/src/lib.rs') diff --git a/glow/src/lib.rs b/glow/src/lib.rs index 4e5a75d7..05435b54 100644 --- a/glow/src/lib.rs +++ b/glow/src/lib.rs @@ -22,7 +22,6 @@ mod text; mod triangle; pub mod settings; -pub mod widget; pub mod window; pub use backend::Backend; @@ -30,9 +29,6 @@ pub use settings::Settings; pub(crate) use iced_graphics::Transformation; -#[doc(no_inline)] -pub use widget::*; - pub use iced_graphics::{Error, Viewport}; pub use iced_native::alignment; -- cgit