From 63cfaaaf4bef6d0f11b24926ceb90114c96dbc90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 01:01:18 +0000 Subject: [PATCH] build(deps): update indexmap requirement from ~2.11.4 to ~2.12.1 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.1) --- updated-dependencies: - dependency-name: indexmap dependency-version: 2.12.1 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..9ccf4b9 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.1", default-features = false } proc-macro2 = "1.0.24" quote = "1.0.8" syn = { version = "2.0.52", features = ["full"] }