From 86dcdd9cb641e3ca8f1c0b6f70320d11b83b8326 Mon Sep 17 00:00:00 2001 From: rowan amber-jones Date: Sun, 1 Mar 2026 11:33:19 +0000 Subject: [PATCH] chore(deps): fix evmap version in Cargo.toml to match #24754 dependabot bumped the lockfile to 11.0.0 but left Cargo.toml pinned at 10.0.2. since semver 10.0.2 means >=10.0.2 <11.0.0, cargo resolves back to 10.0.2 on next lockfile regeneration, undoing the bump --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 56e3376b29f02..6715d3ea4f8af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -372,7 +372,7 @@ dirs-next = { version = "2.0.0", default-features = false, optional = true } dyn-clone = { version = "1.0.20", default-features = false } encoding_rs = { version = "0.8.35", default-features = false, features = ["serde"] } enum_dispatch = { version = "0.3.13", default-features = false } -evmap = { version = "10.0.2", default-features = false, optional = true } +evmap = { version = "11.0.0", default-features = false, optional = true } evmap-derive = { version = "0.2.0", default-features = false, optional = true } exitcode.workspace = true flate2.workspace = true