From a25b1af45690bdd8e1cbb20ee3a5b1c4342de455 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 14 Jun 2024 01:47:39 +0200 Subject: Replace `Command` with a new `Task` API with chain support --- futures/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'futures/src/lib.rs') diff --git a/futures/src/lib.rs b/futures/src/lib.rs index a874a618..01b56306 100644 --- a/futures/src/lib.rs +++ b/futures/src/lib.rs @@ -8,7 +8,6 @@ pub use futures; pub use iced_core as core; -mod maybe; mod runtime; pub mod backend; @@ -18,7 +17,6 @@ pub mod keyboard; pub mod subscription; pub use executor::Executor; -pub use maybe::{MaybeSend, MaybeSync}; pub use platform::*; pub use runtime::Runtime; pub use subscription::Subscription; -- cgit