diff --git a/Cargo.lock b/Cargo.lock index c64181b2b4c8..27caa570579d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8991,7 +8991,7 @@ dependencies = [ "risingwave_meta_node", "risingwave_rt", "shell-words", - "strum 0.25.0", + "strum 0.26.1", "strum_macros 0.26.1", "tempfile", "thiserror-ext", @@ -9899,7 +9899,7 @@ dependencies = [ "sea-orm", "serde", "serde_json", - "strum 0.25.0", + "strum 0.26.1", "sync-point", "thiserror", "thiserror-ext", @@ -10063,7 +10063,7 @@ dependencies = [ "prost-helpers", "risingwave_error", "serde", - "strum 0.25.0", + "strum 0.26.1", "thiserror", "walkdir", "workspace-hack", @@ -12172,6 +12172,9 @@ name = "strum" version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "723b93e8addf9aa965ebe2d11da6d7540fa2283fcea14b3371ff055f7ba13f5f" +dependencies = [ + "strum_macros 0.26.1", +] [[package]] name = "strum_macros" @@ -14476,6 +14479,7 @@ dependencies = [ "sqlx-postgres", "sqlx-sqlite", "strum 0.25.0", + "strum 0.26.1", "subtle", "syn 1.0.109", "syn 2.0.48", diff --git a/src/cmd_all/Cargo.toml b/src/cmd_all/Cargo.toml index cc9befc068d0..1d1c617bfa1f 100644 --- a/src/cmd_all/Cargo.toml +++ b/src/cmd_all/Cargo.toml @@ -37,7 +37,7 @@ risingwave_frontend = { workspace = true } risingwave_meta_node = { workspace = true } risingwave_rt = { workspace = true } shell-words = "1.1.0" -strum = "0.25" +strum = "0.26" strum_macros = "0.26" tempfile = "3" tikv-jemallocator = { workspace = true, features = [ diff --git a/src/meta/Cargo.toml b/src/meta/Cargo.toml index 822a71d3ad17..0119f6abfe06 100644 --- a/src/meta/Cargo.toml +++ b/src/meta/Cargo.toml @@ -65,7 +65,7 @@ scopeguard = "1.2.0" sea-orm = { workspace = true } serde = { version = "1.0.196", features = ["derive"] } serde_json = "1.0.113" -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.26", features = ["derive"] } sync-point = { path = "../utils/sync-point" } thiserror = "1" thiserror-ext = { workspace = true } diff --git a/src/prost/Cargo.toml b/src/prost/Cargo.toml index d46e1baf2b4f..af12b1683959 100644 --- a/src/prost/Cargo.toml +++ b/src/prost/Cargo.toml @@ -14,7 +14,7 @@ prost = { workspace = true } prost-helpers = { path = "helpers" } risingwave_error = { workspace = true } serde = { version = "1", features = ["derive"] } -strum = "0.25" +strum = "0.26" thiserror = "1" tonic = { workspace = true } diff --git a/src/workspace-hack/Cargo.toml b/src/workspace-hack/Cargo.toml index 177ce846390d..1ccd14ff77a1 100644 --- a/src/workspace-hack/Cargo.toml +++ b/src/workspace-hack/Cargo.toml @@ -129,7 +129,8 @@ sqlx-core = { version = "0.7", features = ["_rt-tokio", "_tls-native-tls", "bigd sqlx-mysql = { version = "0.7", default-features = false, features = ["bigdecimal", "chrono", "json", "rust_decimal", "time", "uuid"] } sqlx-postgres = { version = "0.7", default-features = false, features = ["bigdecimal", "chrono", "json", "rust_decimal", "time", "uuid"] } sqlx-sqlite = { version = "0.7", default-features = false, features = ["chrono", "json", "time", "uuid"] } -strum = { version = "0.25", features = ["derive"] } +strum-2f80eeee3b1b6c7e = { package = "strum", version = "0.26", features = ["derive"] } +strum-2ffb4c3fe830441c = { package = "strum", version = "0.25", features = ["derive"] } subtle = { version = "2" } syn-dff4ba8e3ae991db = { package = "syn", version = "1", features = ["extra-traits", "full", "visit", "visit-mut"] } target-lexicon = { version = "0.12", features = ["std"] }