From c1e5e13f75a5354e10c3dc1e4021a9ab377e971c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 00:08:37 +0000 Subject: [PATCH] build(deps): bump strum_macros from 0.27.2 to 0.28.0 Bumps [strum_macros](https://github.com/Peternator7/strum) from 0.27.2 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.2...v0.28.0) --- updated-dependencies: - dependency-name: strum_macros dependency-version: 0.28.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 +++++++++++++- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 54e57fe..90a5d54 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -558,7 +558,7 @@ dependencies = [ "serde", "serde_json", "strum 0.27.2", - "strum_macros 0.27.2", + "strum_macros 0.28.0", "tokio", "tui-input", "urlencoding", @@ -2603,6 +2603,18 @@ dependencies = [ "syn 2.0.117", ] +[[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 2.0.117", +] + [[package]] name = "subtle" version = "2.6.1" diff --git a/Cargo.toml b/Cargo.toml index 6f3da9e..24c657a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ ratatui = { version = "0.29.0", features = ["crossterm"], optional = true } tui-input = { version = "0.11.1", optional = true } crossterm = { version = "=0.28.1", optional = true } strum = { version = "0.27.1", features = ["derive"], optional = true } -strum_macros = { version = "0.27.1", optional = true } +strum_macros = { version = "0.28.0", optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] reqwest = { version = "0.13.2", features = ["cookies", "json", "query"] }