From e97c9200252e82a693950d56ad0a8956f407acb0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 01:01:05 +0000 Subject: [PATCH] build(deps): update indexmap requirement from ~2.11.4 to ~2.12.0 Updates the requirements on [indexmap](https://github.com/indexmap-rs/indexmap) to permit the latest version. - [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/2.11.4...2.12.0) --- updated-dependencies: - dependency-name: indexmap dependency-version: 2.12.0 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 7760f88..3f53ce7 100644 --- a/parameterized-macro/Cargo.toml +++ b/parameterized-macro/Cargo.toml @@ -24,7 +24,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"] }