From 7ab8f1b7e36fc240fbdf7721d9808c435c25dd4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 11:50:37 +0000 Subject: [PATCH] Update indexmap requirement from 1.6.2 to 2.2.6 Updates the requirements on [indexmap](https://github.com/indexmap-rs/indexmap) to permit the latest version. - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/1.6.2...2.2.6) --- updated-dependencies: - dependency-name: indexmap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- parameterized-macro/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parameterized-macro/Cargo.toml b/parameterized-macro/Cargo.toml index a4c7324..1454854 100644 --- a/parameterized-macro/Cargo.toml +++ b/parameterized-macro/Cargo.toml @@ -23,7 +23,7 @@ path = "tests/cases.rs" [dependencies] fnv = "1.0.7" # from indexmap 2.12 the MSRV is 1.82; unless indexmap needs security updates, a lower MSRV is preferable, since parameterized doesn't need it -indexmap = { version = "~2.11.4", default-features = false } +indexmap = { version = "~2.12.0", default-features = false } proc-macro2 = "1.0.24" quote = "1.0.8" syn = { version = "2.0.52", features = ["full"] }