From a19323727bfcda46e7144a504c8603011f8f2263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Oliveira?= Date: Wed, 26 Aug 2020 18:58:52 +0100 Subject: [PATCH] fix h2-fuzz testing, import futures with FuturesUnordered (#482) --- tests/h2-fuzz/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/h2-fuzz/Cargo.toml b/tests/h2-fuzz/Cargo.toml index d119aed..8bb1219 100644 --- a/tests/h2-fuzz/Cargo.toml +++ b/tests/h2-fuzz/Cargo.toml @@ -9,7 +9,7 @@ edition = "2018" h2 = { path = "../.." } env_logger = { version = "0.5.3", default-features = false } -futures = { version = "0.3", default-features = false } +futures = { version = "0.3", default-features = false, features = ["std"] } honggfuzz = "0.5" http = "0.2" tokio = { version = "0.2", features = [] }