diff --git a/Cargo.lock b/Cargo.lock index 6c748f25..435d92c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1914,7 +1914,7 @@ dependencies = [ "serde_yaml 0.8.26", "snafu", "stackable-operator", - "strum", + "strum 0.25.0", "tracing", ] @@ -1932,7 +1932,7 @@ dependencies = [ "snafu", "stackable-airflow-crd", "stackable-operator", - "strum", + "strum 0.25.0", "tokio", "tracing", ] @@ -1963,7 +1963,7 @@ dependencies = [ "serde_yaml 0.9.22", "snafu", "stackable-operator-derive", - "strum", + "strum 0.24.1", "thiserror", "tokio", "tracing", @@ -1994,7 +1994,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]] @@ -2010,6 +2019,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/crd/Cargo.toml b/rust/crd/Cargo.toml index fb195e46..9768252b 100644 --- a/rust/crd/Cargo.toml +++ b/rust/crd/Cargo.toml @@ -13,7 +13,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"] } tracing = "0.1" [dev-dependencies] diff --git a/rust/operator-binary/Cargo.toml b/rust/operator-binary/Cargo.toml index ad529155..2a2e0023 100644 --- a/rust/operator-binary/Cargo.toml +++ b/rust/operator-binary/Cargo.toml @@ -17,7 +17,7 @@ serde = "1.0" snafu = "0.7" stackable-airflow-crd = { path = "../crd" } 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"