From a0ad3996225601aaa1ebe051cba115374b55c80e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 20 Sep 2021 15:09:55 +0700 Subject: Refactor alignment types into an `alignment` module --- src/lib.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index 5ef25d2e..0020ed87 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -245,8 +245,9 @@ pub use result::Result; pub use sandbox::Sandbox; pub use settings::Settings; +pub use runtime::alignment; +pub use runtime::futures; pub use runtime::{ - futures, Align, Background, Color, Command, CrossAlign, Font, - HorizontalAlignment, Length, Point, Rectangle, Size, Subscription, Vector, - VerticalAlignment, + Alignment, Background, Color, Command, Font, Length, Point, Rectangle, + Size, Subscription, Vector, }; -- cgit