From 349e40f600edbb4f302b7a4bea5a52ee838f8e6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Sun, 7 Dec 2025 21:07:00 +0100 Subject: [PATCH] Enable `std` and `async-await` of `futures` dependency --- Cargo.toml | 2 +- futures/Cargo.toml | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3e7d3a93..c26f8805 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -192,7 +192,7 @@ bytes = "1.6" cargo-hot = { version = "0.1", package = "cargo-hot-protocol" } cosmic-text = "0.15" cryoglyph = "0.1" -futures = { version = "0.3", default-features = false } +futures = { version = "0.3", default-features = false, features = ["std", "async-await"] } glam = "0.25" guillotiere = "0.6" half = "2.2" diff --git a/futures/Cargo.toml b/futures/Cargo.toml index 8bc693e9..4990fbec 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -22,10 +22,7 @@ thread-pool = ["futures/thread-pool"] [dependencies] iced_core.workspace = true - futures.workspace = true -futures.features = ["std", "async-await"] - log.workspace = true rustc-hash.workspace = true