From df3c227171f6a34f93c8d4f5f283a0ec4382ecc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Nov 2021 15:09:21 +0000 Subject: [PATCH] Bump strum_macros from 0.22.0 to 0.23.1 Bumps [strum_macros](https://github.com/Peternator7/strum) from 0.22.0 to 0.23.1. - [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) --- updated-dependencies: - dependency-name: strum_macros dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 ++++++++++++++++++++++--- rust/crd/Cargo.toml | 2 +- rust/operator/Cargo.toml | 2 +- 3 files changed, 24 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be6d25e..afd5f80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1490,6 +1490,12 @@ dependencies = [ "base64", ] +[[package]] +name = "rustversion" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088" + [[package]] name = "ryu" version = "1.0.5" @@ -1742,7 +1748,7 @@ dependencies = [ "serde_yaml", "stackable-operator", "strum", - "strum_macros", + "strum_macros 0.23.1", "thiserror", "tracing", ] @@ -1762,7 +1768,7 @@ dependencies = [ "stackable-monitoring-crd", "stackable-operator", "strum", - "strum_macros", + "strum_macros 0.23.1", "thiserror", "tracing", ] @@ -1805,7 +1811,7 @@ dependencies = [ "serde_json", "serde_yaml", "strum", - "strum_macros", + "strum_macros 0.22.0", "thiserror", "tokio", "tracing", @@ -1844,6 +1850,19 @@ dependencies = [ "syn", ] +[[package]] +name = "strum_macros" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5bb0dc7ee9c15cea6199cde9a127fa16a4c5819af85395457ad72d68edc85a38" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn", +] + [[package]] name = "syn" version = "1.0.81" diff --git a/rust/crd/Cargo.toml b/rust/crd/Cargo.toml index 9081a7b..7a35adc 100644 --- a/rust/crd/Cargo.toml +++ b/rust/crd/Cargo.toml @@ -14,7 +14,7 @@ semver = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" strum = "0.22" -strum_macros = "0.22" +strum_macros = "0.23" thiserror = "1.0" tracing = "0.1" diff --git a/rust/operator/Cargo.toml b/rust/operator/Cargo.toml index d9dd903..fc8765a 100644 --- a/rust/operator/Cargo.toml +++ b/rust/operator/Cargo.toml @@ -18,7 +18,7 @@ serde_json = "1.0" serde_yaml = "0.8" serde_with_macros = "1.4" strum = "0.22" -strum_macros = "0.22" +strum_macros = "0.23" thiserror = "1.0" tracing = "0.1" handlebars = "4.1"