summaryrefslogtreecommitdiffstats
path: root/runtime/src/task.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/src/task.rs')
-rw-r--r--runtime/src/task.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/src/task.rs b/runtime/src/task.rs
index 022483f7..105a4135 100644
--- a/runtime/src/task.rs
+++ b/runtime/src/task.rs
@@ -1,17 +1,17 @@
//! 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.
///