From 2303111e09d806ef2a652bddc2b73be6dccf6ae2 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 10 Nov 2019 01:55:32 +0100 Subject: Draft new layout API --- native/src/lib.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'native/src/lib.rs') diff --git a/native/src/lib.rs b/native/src/lib.rs index 56399e57..d2388ee2 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -199,32 +199,25 @@ #![deny(unsafe_code)] #![deny(rust_2018_idioms)] pub mod input; +pub mod layout; pub mod renderer; pub mod widget; mod element; mod event; mod hasher; -mod layout; mod mouse_cursor; -mod node; -mod style; mod user_interface; pub use iced_core::{ Align, Background, Color, Justify, Length, Point, Rectangle, Vector, }; -#[doc(no_inline)] -pub use stretch::{geometry::Size, number::Number}; - pub use element::Element; pub use event::Event; pub use hasher::Hasher; pub use layout::Layout; pub use mouse_cursor::MouseCursor; -pub use node::Node; pub use renderer::Renderer; -pub use style::Style; pub use user_interface::{Cache, UserInterface}; pub use widget::*; -- cgit