diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 8d4a5aa431..15a713d158 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -13152,6 +13152,18 @@ dependencies = [ "syn 2.0.117", ] +[[package]] +name = "strum_macros" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + [[package]] name = "subtle" version = "2.6.1" @@ -16502,7 +16514,7 @@ dependencies = [ "size", "sqlx", "strum 0.27.2", - "strum_macros 0.27.2", + "strum_macros 0.28.0", "sysinfo", "systemstat", "tar", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index f67a635efc..f9554b74fc 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -587,7 +587,7 @@ tree-sitter-ruby = "0.23.0" oracle = { version = "0.6.3", features = ["chrono"] } rumqttc = { version = "0.24.0", features = ["use-native-tls"]} strum = { version = "0.27", features = ["derive"] } -strum_macros = "0.27" +strum_macros = "0.28" hudsucker = { version = "0.22", features = ["rcgen-ca", "native-tls-client"] } hyper-http-proxy = { version = "1", default-features = false, features = ["native-tls"] } rcgen = "0.13"