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/executor.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'futures/src/executor.rs') diff --git a/futures/src/executor.rs b/futures/src/executor.rs index 3b0d4af1..9c14a2c9 100644 --- a/futures/src/executor.rs +++ b/futures/src/executor.rs @@ -1,8 +1,6 @@ //! Choose your preferred executor to power a runtime. use crate::MaybeSend; -use futures::Future; - /// A type that can run futures. pub trait Executor: Sized { /// Creates a new [`Executor`]. -- cgit