From 80bd0a494e05e9c0b48bc1953099993ae48ea80e Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 3 May 2022 11:50:58 -0700 Subject: [PATCH] Explicitly enable indexmap/std --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7fcdf3e9..a9b77b86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["yaml", "serde"] [dependencies] ryu = "1.0" -indexmap = "1.5" +indexmap = { version = "1.5.2", features = ["std"] } serde = "1.0.69" yaml-rust = "0.4.5"