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] 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"