From 6962acc8496d7469ff6544c17648e804c7f86dfe Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 7 Mar 2021 10:49:39 +0000 Subject: [PATCH] cargo: Explicitly set fatures for reqwest Cargo feature unifications means that if you build with --workspace it works despite the lack of this. Pfah. Signed-off-by: Ian Jackson --- apitest/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apitest/Cargo.toml b/apitest/Cargo.toml index 46a99314..344a6f0b 100644 --- a/apitest/Cargo.toml +++ b/apitest/Cargo.toml @@ -15,7 +15,7 @@ otter = { path = ".." } ego-tree = "0.6" humantime = "2" -reqwest = { version = "0.11", features = ["blocking", "stream"] } +reqwest = { version = "0.11", features = ["blocking", "json", "stream"] } scraper = "0.12" # Repeated here because importing does not work properly -- 2.30.2