From ba1e5021b375e1bae4f9f01183d74ad2c1468448 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 May 2024 06:41:09 +0000 Subject: [PATCH] chore(deps): Bump strum_macros from 0.25.3 to 0.26.2 Bumps [strum_macros](https://github.com/Peternator7/strum) from 0.25.3 to 0.26.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/commits/v0.26.2) --- updated-dependencies: - dependency-name: strum_macros dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 +++++++++++++++-- image-rs/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 20cb22e26..181f9eeb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2645,7 +2645,7 @@ dependencies = [ "sha2 0.10.8", "sigstore", "strum", - "strum_macros", + "strum_macros 0.26.2", "tar", "tempfile", "test-utils", @@ -5810,7 +5810,7 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" dependencies = [ - "strum_macros", + "strum_macros 0.25.3", ] [[package]] @@ -5826,6 +5826,19 @@ dependencies = [ "syn 2.0.50", ] +[[package]] +name = "strum_macros" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.50", +] + [[package]] name = "subtle" version = "2.5.0" diff --git a/image-rs/Cargo.toml b/image-rs/Cargo.toml index 4ccf415a4..fe829e86b 100644 --- a/image-rs/Cargo.toml +++ b/image-rs/Cargo.toml @@ -41,7 +41,7 @@ serde_yaml = { version = "0.9", optional = true } sha2.workspace = true sigstore = { git = "https://github.com/sigstore/sigstore-rs.git", rev = "d5ba303", default-features = false, optional = true } strum.workspace = true -strum_macros = "0.25" +strum_macros = "0.26" tar = "0.4.37" tokio.workspace = true tokio-util = "0.7.10"