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 --- runtime/src/task.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'runtime') 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)] -- cgit