summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 01:41:42 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 01:41:56 +0100
commitc12beecd387ad57eef434b64598473f613e32f57 (patch)
tree79104030fec14dc20c4df86baf2b1965ccd290cb /runtime
parent33a39bc83a1de62f21b3176ab86bd542d5f5c20b (diff)
downloadiced-c12beecd387ad57eef434b64598473f613e32f57.tar.gz
iced-c12beecd387ad57eef434b64598473f613e32f57.tar.bz2
iced-c12beecd387ad57eef434b64598473f613e32f57.zip
Remove unnecessary `Future` imports
Diffstat (limited to 'runtime')
-rw-r--r--runtime/src/task.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/src/task.rs b/runtime/src/task.rs
index 105a4135..710be5d9 100644
--- a/runtime/src/task.rs
+++ b/runtime/src/task.rs
@@ -7,7 +7,6 @@ use crate::futures::futures::future::{self, FutureExt};
use crate::futures::futures::stream::{self, Stream, StreamExt};
use crate::futures::{BoxStream, MaybeSend, boxed_stream};
-use std::future::Future;
use std::sync::Arc;
#[doc(no_inline)]