From fb78fe960665cf0802fed6d17a31b5bd73c8b715 Mon Sep 17 00:00:00 2001 From: Kestrer Date: Mon, 15 Feb 2021 23:03:35 +0000 Subject: [PATCH] Explicitly enable the `std` feature of indexmap (#519) * Explicitly enable the `std` feature of indexmap This crate depends on it anyway, and by explicitly turning it on we avoid unreliable platform target detection that causes build failures on some platforms. * Bump indexmap to 1.5.2 This allows use of the `std` feature. Co-authored-by: Taiki Endo Co-authored-by: Taiki Endo --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4894e5e..ab730b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ http = "0.2" tracing = { version = "0.1.21", default-features = false, features = ["std"] } fnv = "1.0.5" slab = "0.4.2" -indexmap = "1.0" +indexmap = { version = "1.5.2", features = ["std"] } [dev-dependencies]