summaryrefslogtreecommitdiffstats
path: root/glow/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-09 14:10:15 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-09 14:10:15 +0700
commit12c1a3f829c801022d45f1a294d8fc7fa10606e5 (patch)
tree05cc7a7981f13063831e7397129ea30a14a6d97a /glow/src/lib.rs
parent7d9ab71790ba0395681490f3af4d3899bb09ab09 (diff)
downloadiced-12c1a3f829c801022d45f1a294d8fc7fa10606e5.tar.gz
iced-12c1a3f829c801022d45f1a294d8fc7fa10606e5.tar.bz2
iced-12c1a3f829c801022d45f1a294d8fc7fa10606e5.zip
Remove redundant `widget` modules in subcrates
Instead, we can define the type aliases just once in the root crate!
Diffstat (limited to 'glow/src/lib.rs')
-rw-r--r--glow/src/lib.rs4
1 files changed, 0 insertions, 4 deletions
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;