summaryrefslogtreecommitdiffstats
path: root/native/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-20 04:47:36 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-20 04:47:36 +0100
commit90690702e1e4abab804ec91e8ff4183824bec436 (patch)
treed3f989047f4ac5166bc5baed9febcc10af2d63a6 /native/src/lib.rs
parent35760ac68f06e783e64e9048aff0fff6df1c09cf (diff)
downloadiced-90690702e1e4abab804ec91e8ff4183824bec436.tar.gz
iced-90690702e1e4abab804ec91e8ff4183824bec436.tar.bz2
iced-90690702e1e4abab804ec91e8ff4183824bec436.zip
Add `Application::Executor` associated type
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r--native/src/lib.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index 7730c6a3..b5856c00 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -42,7 +42,6 @@
pub mod input;
pub mod layout;
pub mod renderer;
-pub mod runtime;
pub mod subscription;
pub mod widget;
pub mod window;
@@ -52,6 +51,7 @@ mod element;
mod event;
mod hasher;
mod mouse_cursor;
+mod runtime;
mod size;
mod user_interface;
@@ -59,7 +59,10 @@ pub use iced_core::{
Align, Background, Color, Font, HorizontalAlignment, Length, Point,
Rectangle, Vector, VerticalAlignment,
};
-pub use iced_futures::Command;
+pub use iced_futures::{executor, futures, Command};
+
+#[doc(no_inline)]
+pub use executor::Executor;
pub use clipboard::Clipboard;
pub use element::Element;