summaryrefslogtreecommitdiffstats
path: root/futures/src/stream.rs
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 /futures/src/stream.rs
parent33a39bc83a1de62f21b3176ab86bd542d5f5c20b (diff)
downloadiced-c12beecd387ad57eef434b64598473f613e32f57.tar.gz
iced-c12beecd387ad57eef434b64598473f613e32f57.tar.bz2
iced-c12beecd387ad57eef434b64598473f613e32f57.zip
Remove unnecessary `Future` imports
Diffstat (limited to '')
-rw-r--r--futures/src/stream.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/futures/src/stream.rs b/futures/src/stream.rs
index af2f8c99..72e1f04b 100644
--- a/futures/src/stream.rs
+++ b/futures/src/stream.rs
@@ -2,8 +2,6 @@
use futures::channel::mpsc;
use futures::stream::{self, Stream, StreamExt};
-use std::future::Future;
-
/// Creates a new [`Stream`] that produces the items sent from a [`Future`]
/// to the [`mpsc::Sender`] provided to the closure.
///