From 0779096e3280a85094d6da04f2ba071637d327cd Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Sat, 24 May 2025 12:38:37 +0200 Subject: [PATCH] refactor: reduce dependency on `futures-util` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fad41db0..e90fa7d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ rustdoc-args = ["--cfg", "docsrs"] base64 = { version = "0.23", optional = true } bytes = "1.7.1" futures-channel = { version = "0.3", optional = true } -futures-util = { version = "0.3.16", default-features = false, optional = true } +futures-util = { version = "0.3.16", default-features = false, features = ["alloc"], optional = true } http = "1.0" http-body = "1.0.0" httparse = { version = "1", optional = true }