diff options
Diffstat (limited to 'runtime/src/task.rs')
-rw-r--r-- | runtime/src/task.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/runtime/src/task.rs b/runtime/src/task.rs index 022483f7..710be5d9 100644 --- a/runtime/src/task.rs +++ b/runtime/src/task.rs @@ -1,17 +1,16 @@ //! Create runtime tasks. +use crate::Action; use crate::core::widget; use crate::futures::futures::channel::mpsc; use crate::futures::futures::channel::oneshot; use crate::futures::futures::future::{self, FutureExt}; use crate::futures::futures::stream::{self, Stream, StreamExt}; -use crate::futures::{boxed_stream, BoxStream, MaybeSend}; -use crate::Action; +use crate::futures::{BoxStream, MaybeSend, boxed_stream}; -use std::future::Future; use std::sync::Arc; #[doc(no_inline)] -pub use sipper::{sipper, stream, Never, Sender, Sipper, Straw}; +pub use sipper::{Never, Sender, Sipper, Straw, sipper, stream}; /// A set of concurrent actions to be performed by the iced runtime. /// |