From 91c13379f698a42912103f9d2fdf29743e91c94e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 10:27:11 +0000 Subject: [PATCH] Update strum requirement from 0.27 to 0.28 Updates the requirements on [strum](https://github.com/Peternator7/strum) to permit the latest version. - [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.0...v0.28.0) --- updated-dependencies: - dependency-name: strum dependency-version: 0.28.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- bluejay-core/Cargo.toml | 2 +- bluejay-parser/Cargo.toml | 2 +- bluejay-schema-comparator/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bluejay-core/Cargo.toml b/bluejay-core/Cargo.toml index 296974b4..22e01f9f 100644 --- a/bluejay-core/Cargo.toml +++ b/bluejay-core/Cargo.toml @@ -10,7 +10,7 @@ exclude = [".gitignore"] description = "Base GraphQL abstractions" [dependencies] -strum = { version = "0.27", features = ["derive"] } +strum = { version = "0.28", features = ["derive"] } serde_json = { version = "1.0", optional = true } enum-as-inner = "0.7" itertools = "0.14.0" diff --git a/bluejay-parser/Cargo.toml b/bluejay-parser/Cargo.toml index c15b65cd..cbf738d9 100644 --- a/bluejay-parser/Cargo.toml +++ b/bluejay-parser/Cargo.toml @@ -15,7 +15,7 @@ enum-as-inner = "0.7" ariadne = { version = "0.5.0" } serde = { version = "1.0.203", optional = true } bluejay-core = { workspace = true } -strum = { version = "0.27", features = ["derive"] } +strum = { version = "0.28", features = ["derive"] } itertools = "0.14.0" [dev-dependencies] diff --git a/bluejay-schema-comparator/Cargo.toml b/bluejay-schema-comparator/Cargo.toml index abdde8df..e46cf7fb 100644 --- a/bluejay-schema-comparator/Cargo.toml +++ b/bluejay-schema-comparator/Cargo.toml @@ -10,7 +10,7 @@ exclude = [".gitignore", "tests/**/*"] description = "A GraphQL schema comparator" [dependencies] -strum = { version = "0.27", features = ["derive"] } +strum = { version = "0.28", features = ["derive"] } bluejay-core = { workspace = true } bluejay-printer = { workspace = true }