summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 01:41:42 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 01:41:56 +0100
commitc12beecd387ad57eef434b64598473f613e32f57 (patch)
tree79104030fec14dc20c4df86baf2b1965ccd290cb
parent33a39bc83a1de62f21b3176ab86bd542d5f5c20b (diff)
downloadiced-c12beecd387ad57eef434b64598473f613e32f57.tar.gz
iced-c12beecd387ad57eef434b64598473f613e32f57.tar.bz2
iced-c12beecd387ad57eef434b64598473f613e32f57.zip
Remove unnecessary `Future` imports
-rw-r--r--examples/game_of_life/src/main.rs1
-rw-r--r--futures/src/backend/native/async_std.rs1
-rw-r--r--futures/src/backend/native/smol.rs1
-rw-r--r--futures/src/backend/native/thread_pool.rs1
-rw-r--r--futures/src/backend/native/tokio.rs2
-rw-r--r--futures/src/backend/null.rs1
-rw-r--r--futures/src/executor.rs2
-rw-r--r--futures/src/stream.rs2
-rw-r--r--graphics/src/compositor.rs1
-rw-r--r--runtime/src/task.rs1
10 files changed, 0 insertions, 13 deletions
diff --git a/examples/game_of_life/src/main.rs b/examples/game_of_life/src/main.rs
index 7cc4565a..d652347b 100644
--- a/examples/game_of_life/src/main.rs
+++ b/examples/game_of_life/src/main.rs
@@ -196,7 +196,6 @@ mod grid {
Color, Element, Fill, Point, Rectangle, Renderer, Size, Theme, Vector,
};
use rustc_hash::{FxHashMap, FxHashSet};
- use std::future::Future;
use std::ops::RangeInclusive;
pub struct Grid {
diff --git a/futures/src/backend/native/async_std.rs b/futures/src/backend/native/async_std.rs
index 86714f45..be258b26 100644
--- a/futures/src/backend/native/async_std.rs
+++ b/futures/src/backend/native/async_std.rs
@@ -1,5 +1,4 @@
//! An `async-std` backend.
-use futures::Future;
/// An `async-std` executor.
#[derive(Debug)]
diff --git a/futures/src/backend/native/smol.rs b/futures/src/backend/native/smol.rs
index 8d448e7f..9ac6a27d 100644
--- a/futures/src/backend/native/smol.rs
+++ b/futures/src/backend/native/smol.rs
@@ -1,5 +1,4 @@
//! A `smol` backend.
-use futures::Future;
/// A `smol` executor.
#[derive(Debug)]
diff --git a/futures/src/backend/native/thread_pool.rs b/futures/src/backend/native/thread_pool.rs
index c96f2682..a90cc53a 100644
--- a/futures/src/backend/native/thread_pool.rs
+++ b/futures/src/backend/native/thread_pool.rs
@@ -1,5 +1,4 @@
//! A `ThreadPool` backend.
-use futures::Future;
/// A thread pool executor for futures.
pub type Executor = futures::executor::ThreadPool;
diff --git a/futures/src/backend/native/tokio.rs b/futures/src/backend/native/tokio.rs
index 0fd5da41..911d788c 100644
--- a/futures/src/backend/native/tokio.rs
+++ b/futures/src/backend/native/tokio.rs
@@ -1,5 +1,4 @@
//! A `tokio` backend.
-use futures::Future;
/// A `tokio` executor.
pub type Executor = tokio::runtime::Runtime;
@@ -27,7 +26,6 @@ pub mod time {
use crate::subscription::Subscription;
use futures::stream;
- use std::future::Future;
/// Returns a [`Subscription`] that produces messages at a set interval.
///
diff --git a/futures/src/backend/null.rs b/futures/src/backend/null.rs
index 609b8b3f..f31415b9 100644
--- a/futures/src/backend/null.rs
+++ b/futures/src/backend/null.rs
@@ -1,5 +1,4 @@
//! A backend that does nothing!
-use futures::Future;
/// An executor that drops all the futures, instead of spawning them.
#[derive(Debug)]
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`].
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.
///
diff --git a/graphics/src/compositor.rs b/graphics/src/compositor.rs
index fadf41d9..df3d41c3 100644
--- a/graphics/src/compositor.rs
+++ b/graphics/src/compositor.rs
@@ -8,7 +8,6 @@ use raw_window_handle::{HasDisplayHandle, HasWindowHandle};
use thiserror::Error;
use std::borrow::Cow;
-use std::future::Future;
/// A graphics compositor that can draw to windows.
pub trait Compositor: Sized {
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)]