From 4e7cbbf98ab745351e2fb13a7c85d4ad560c21ee Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 14 Jun 2024 01:57:49 +0200 Subject: Move `Maybe*` traits back to `iced_futures` --- futures/src/executor.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'futures/src/executor.rs') diff --git a/futures/src/executor.rs b/futures/src/executor.rs index a9dde465..3b0d4af1 100644 --- a/futures/src/executor.rs +++ b/futures/src/executor.rs @@ -1,5 +1,6 @@ //! Choose your preferred executor to power a runtime. -use crate::core::MaybeSend; +use crate::MaybeSend; + use futures::Future; /// A type that can run futures. -- cgit