diff options
author | 2019-07-23 10:49:24 +0200 | |
---|---|---|
committer | 2019-07-23 10:49:24 +0200 | |
commit | e55ac637a9c4422b2fccfcc56c25449160e56e02 (patch) | |
tree | dabc064bf3668d3a3fb9f9e1e6ad30051ea2a522 /src/lib.rs | |
parent | eb45c51a7b8b9a595e318048712362c8d65d77b3 (diff) | |
download | iced-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.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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::*; |