From 045287aef9395ce6a3e18b8ae45ebae94b1ee133 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Tue, 10 Aug 2021 20:08:44 +0200 Subject: [PATCH] Reduce futures-util features (#173) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 887bd7a6..1b6eec48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ multipart = ["multer", "mime"] async-trait = "0.1" bitflags = "1.0" bytes = "1.0" -futures-util = "0.3" +futures-util = { version = "0.3", default-features = false, features = ["alloc"] } http = "0.2" http-body = "0.4.3" hyper = { version = "0.14", features = ["server", "tcp", "http1", "stream"] }