From 10a862557c4d9a6945412a7b5788f061027bc630 Mon Sep 17 00:00:00 2001 From: Stacky McStackface Date: Wed, 26 Jul 2023 08:23:09 +0000 Subject: [PATCH] chore(deps): update rust crate strum to 0.25 --- Cargo.lock | 28 +++++++++++++++++++++++++--- rust/operator-binary/Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 118a42c..bf11a0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1866,7 +1866,7 @@ dependencies = [ "serde_json", "snafu", "stackable-operator", - "strum", + "strum 0.25.0", "tokio", "tracing", ] @@ -1897,7 +1897,7 @@ dependencies = [ "serde_yaml 0.9.22", "snafu", "stackable-operator-derive", - "strum", + "strum 0.24.1", "thiserror", "tokio", "tracing", @@ -1928,7 +1928,16 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" dependencies = [ - "strum_macros", + "strum_macros 0.24.3", +] + +[[package]] +name = "strum" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +dependencies = [ + "strum_macros 0.25.1", ] [[package]] @@ -1944,6 +1953,19 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "strum_macros" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6069ca09d878a33f883cc06aaa9718ede171841d3832450354410b718b097232" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.25", +] + [[package]] name = "syn" version = "1.0.109" diff --git a/rust/operator-binary/Cargo.toml b/rust/operator-binary/Cargo.toml index 593c126..0402739 100644 --- a/rust/operator-binary/Cargo.toml +++ b/rust/operator-binary/Cargo.toml @@ -16,7 +16,7 @@ serde = "1.0" serde_json = "1.0" snafu = "0.7" stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.44.0" } -strum = { version = "0.24", features = ["derive"] } +strum = { version = "0.25", features = ["derive"] } tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] } tracing = "0.1"