From abc4e1572affc9f0e12fa446c5f7f9a78652c1a9 Mon Sep 17 00:00:00 2001 From: Max Ammann Date: Sat, 17 Sep 2022 21:39:34 +0200 Subject: [PATCH] Explicitely enable std, and don't rely on environment (#2062) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cbad28e8e5..b74e8ad52f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ termcolor = { version = "1.0.4", optional = true } # https://github.com/brendanzab/codespan/commit/e99c867339a877731437e7ee6a903a3d03b5439e codespan-reporting = { version = "0.11.0", optional = true } rustc-hash = "1.1.0" -indexmap = "1.6" +indexmap = { version = "1.6", features = ["std"] } log = "0.4" num-traits = "0.2" spirv = { version = "0.2", optional = true }