diff options
author | 2025-02-21 01:41:42 +0100 | |
---|---|---|
committer | 2025-02-21 01:41:56 +0100 | |
commit | c12beecd387ad57eef434b64598473f613e32f57 (patch) | |
tree | 79104030fec14dc20c4df86baf2b1965ccd290cb /runtime | |
parent | 33a39bc83a1de62f21b3176ab86bd542d5f5c20b (diff) | |
download | iced-c12beecd387ad57eef434b64598473f613e32f57.tar.gz iced-c12beecd387ad57eef434b64598473f613e32f57.tar.bz2 iced-c12beecd387ad57eef434b64598473f613e32f57.zip |
Remove unnecessary `Future` imports
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/task.rs | 1 |
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)] |