summaryrefslogtreecommitdiffstats
path: root/futures/src/backend/native/thread_pool.rs
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 /futures/src/backend/native/thread_pool.rs
parent33a39bc83a1de62f21b3176ab86bd542d5f5c20b (diff)
downloadiced-c12beecd387ad57eef434b64598473f613e32f57.tar.gz
iced-c12beecd387ad57eef434b64598473f613e32f57.tar.bz2
iced-c12beecd387ad57eef434b64598473f613e32f57.zip
Remove unnecessary `Future` imports
Diffstat (limited to 'futures/src/backend/native/thread_pool.rs')
-rw-r--r--futures/src/backend/native/thread_pool.rs1
1 files changed, 0 insertions, 1 deletions
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;