From 3480feda7b572d33992544061a8e0fbf8610a803 Mon Sep 17 00:00:00 2001 From: Christophe Forycki Date: Mon, 1 Jul 2024 18:00:31 +0200 Subject: [PATCH] fix: indexmap minimal version with Map::shift_insert() --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e8ee3f27a..90e09adec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/serde-rs/json" rust-version = "1.56" [dependencies] -indexmap = { version = "2.2.1", optional = true } +indexmap = { version = "2.2.3", optional = true } itoa = "1.0" ryu = "1.0" serde = { version = "1.0.194", default-features = false }