From 21b39ed72258d79524f59f59f4a08d94eafe978a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 07:23:31 +0000 Subject: [PATCH 1/2] Bump the dependencies group across 1 directory with 2 updates Updates the requirements on [convert_case](https://github.com/rutrum/convert-case) and [strum](https://github.com/Peternator7/strum) to permit the latest version. Updates `convert_case` to 0.11.0 - [Commits](https://github.com/rutrum/convert-case/commits) Updates `strum` to 0.28.0 - [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.27.1...v0.28.0) --- updated-dependencies: - dependency-name: convert_case dependency-version: 0.11.0 dependency-type: direct:production dependency-group: dependencies - dependency-name: strum dependency-version: 0.28.0 dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 06b28db..323ac3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.70.0" version = "0.9.2" [workspace.dependencies] -convert_case = "0.10.0" +convert_case = "0.11.0" documented = { path = "lib", default-features = false } documented-macros = { path = "documented-macros", version = "0.9.2" } itertools = "0.14.0" @@ -27,6 +27,6 @@ optfield = "0.4.0" phf = { version = "0.13", default-features = false, features = ["macros"] } proc-macro2 = "1.0.95" quote = "1.0.40" -strum = { version = "0.27.1", features = ["derive"] } +strum = { version = "0.28.0", features = ["derive"] } syn = { version = "2.0.104", features = ["full", "extra-traits"] } thiserror = "2.0.12" From 26ce5babba6a975af938b1d345f3af995c2f0867 Mon Sep 17 00:00:00 2001 From: cyqsimon <28627918+cyqsimon@users.noreply.github.com> Date: Mon, 2 Mar 2026 13:04:53 +0800 Subject: [PATCH 2/2] Bump MSRV to 1.71.0 (new req of `strum-0.28.0`) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 323ac3f..7c46025 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["documentation", "proc-macro", "reflection"] license = "MIT" readme = "README.md" repository = "https://github.com/cyqsimon/documented" -rust-version = "1.70.0" +rust-version = "1.71.0" version = "0.9.2" [workspace.dependencies]