From 5f0aca6b8a523b48628bc81bae63cd4c526a93e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 11 Oct 2024 16:36:16 +0200 Subject: [PATCH 1/2] chore: Enable the default features for futures-util We depend on the `futures_util::steam_select` macro since 9b36a04b. This macro requires the async-await-macros and std feature of futures-util. These features are the default features so let's just stop disabling the default features for futures-util. --- Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 448a450312f..b181ddd77b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,9 +36,7 @@ eyeball-im = { version = "0.5.0", features = ["tracing"] } eyeball-im-util = "0.6.0" futures-core = "0.3.28" futures-executor = "0.3.21" -futures-util = { version = "0.3.26", default-features = false, features = [ - "alloc", -] } +futures-util = { version = "0.3.26" } growable-bloom-filter = "2.1.0" http = "1.1.0" imbl = "3.0.0" From 11dc865045b6d33d8cd49e9625463ca4c1f9356f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Sun, 13 Oct 2024 21:27:13 +0200 Subject: [PATCH 2/2] Update Cargo.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jonas Platte Signed-off-by: Damir Jelić --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b181ddd77b4..734e9d225bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ eyeball-im = { version = "0.5.0", features = ["tracing"] } eyeball-im-util = "0.6.0" futures-core = "0.3.28" futures-executor = "0.3.21" -futures-util = { version = "0.3.26" } +futures-util = "0.3.26" growable-bloom-filter = "2.1.0" http = "1.1.0" imbl = "3.0.0"