From c12beecd387ad57eef434b64598473f613e32f57 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 21 Feb 2025 01:41:42 +0100 Subject: Remove unnecessary `Future` imports --- futures/src/stream.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'futures/src/stream.rs') 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. /// -- cgit