From 27939bb1f99728c8b878778db8ac51b3d98f9c70 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 3 May 2022 11:57:05 -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 7222bd75f..795f679fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.36" [dependencies] serde = { version = "1.0.100", default-features = false } -indexmap = { version = "1.5", optional = true } +indexmap = { version = "1.5.2", features = ["std"], optional = true } itoa = "1.0" ryu = "1.0"