From 1fdc53006eec57b618d1250af09ff35d0647f886 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 07:53:35 +0000 Subject: [PATCH] chore(deps): bump strum from 0.26.3 to 0.27.2 Bumps [strum](https://github.com/Peternator7/strum) from 0.26.3 to 0.27.2. - [Release notes](https://github.com/Peternator7/strum/releases) - [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md) - [Commits](https://github.com/Peternator7/strum/compare/v0.26.3...v0.27.2) --- updated-dependencies: - dependency-name: strum dependency-version: 0.27.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 27 ++++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8bf1c4beef..1224a3f0f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -707,7 +707,7 @@ dependencies = [ "smashquote", "stdext", "strip-ansi-escapes", - "strum", + "strum 0.28.0", "temp-dir", "temp-env", "tinyvec", @@ -1416,7 +1416,7 @@ dependencies = [ "lru", "paste", "serde", - "strum", + "strum 0.26.3", "unicode-segmentation", "unicode-truncate", "unicode-width 0.2.0", @@ -1711,7 +1711,16 @@ version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" dependencies = [ - "strum_macros", + "strum_macros 0.26.4", +] + +[[package]] +name = "strum" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd" +dependencies = [ + "strum_macros 0.28.0", ] [[package]] @@ -1727,6 +1736,18 @@ dependencies = [ "syn", ] +[[package]] +name = "strum_macros" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "syn" version = "2.0.111" diff --git a/Cargo.toml b/Cargo.toml index 368a8ff68c..c3d6690af2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,7 @@ regex = "1.12.2" strip-ansi-escapes = "0.2.1" unicode-segmentation = "1.12.0" cached = "0.56.0" -strum = { version = "0.26.3", features = ["strum_macros"] } +strum = { version = "0.28.0", features = ["strum_macros"] } tinyvec = "1.10.0" smashquote = "0.1.2" imara-diff = { version = "0.2.0", default-features = false }