From 93e88b019bcde5ecefc7a2b6a47c404dc6bb25aa Mon Sep 17 00:00:00 2001 From: Brendon Federko Date: Thu, 31 Dec 2020 18:37:04 -0800 Subject: [PATCH] Enable 'std' 'indexmap' feature. Fixes #1548. --- core/http/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/http/Cargo.toml b/core/http/Cargo.toml index c43cd0c9be..a23a897e91 100644 --- a/core/http/Cargo.toml +++ b/core/http/Cargo.toml @@ -23,7 +23,7 @@ smallvec = "1.0" percent-encoding = "1" hyper = { version = "0.10.13", default-features = false } time = "0.1" -indexmap = "1.0" +indexmap = { version = "1.5.2", features = ["std"] } rustls = { version = "0.14", optional = true } state = "0.4" cookie = { version = "0.11.3", features = ["percent-encode"] }