summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-07-23 10:49:24 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-07-23 10:49:24 +0200
commite55ac637a9c4422b2fccfcc56c25449160e56e02 (patch)
treedabc064bf3668d3a3fb9f9e1e6ad30051ea2a522 /src/lib.rs
parenteb45c51a7b8b9a595e318048712362c8d65d77b3 (diff)
downloadiced-e55ac637a9c4422b2fccfcc56c25449160e56e02.tar.gz
iced-e55ac637a9c4422b2fccfcc56c25449160e56e02.tar.bz2
iced-e55ac637a9c4422b2fccfcc56c25449160e56e02.zip
Add `Runtime` concept to abstract caching
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9c7eed8d..6ea3e60d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -9,13 +9,13 @@ pub mod widget;
mod element;
mod event;
mod hasher;
-mod interface;
mod layout;
mod mouse_cursor;
mod node;
mod point;
mod rectangle;
mod renderer;
+mod runtime;
mod style;
mod vector;
@@ -25,13 +25,13 @@ pub use stretch::{geometry::Size, number::Number};
pub use element::Element;
pub use event::Event;
pub use hasher::Hasher;
-pub use interface::Interface;
pub use layout::Layout;
pub use mouse_cursor::MouseCursor;
pub use node::Node;
pub use point::Point;
pub use rectangle::Rectangle;
pub use renderer::Renderer;
+pub use runtime::{Interface, Runtime};
pub use style::{Align, Justify, Style};
pub use vector::Vector;
pub use widget::*;