diff --git a/Cargo.lock b/Cargo.lock index b0a14dc3095..021e74567be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3757,7 +3757,7 @@ dependencies = [ "sqlparser 0.61.0", "stable-hash 0.3.4", "stable-hash 0.4.4", - "strum_macros", + "strum_macros 0.28.0", "thiserror 2.0.18", "tiny-keccak 1.5.0", "tokio", @@ -7528,7 +7528,7 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" dependencies = [ - "strum_macros", + "strum_macros 0.27.2", ] [[package]] @@ -7543,6 +7543,18 @@ dependencies = [ "syn 2.0.116", ] +[[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.116", +] + [[package]] name = "subtle" version = "2.6.1" diff --git a/graph/Cargo.toml b/graph/Cargo.toml index 92a2916bcf7..9557098ef27 100644 --- a/graph/Cargo.toml +++ b/graph/Cargo.toml @@ -57,7 +57,7 @@ sqlparser = { workspace = true } # stable-hash = { version = "0.4.2" } stable-hash = { git = "https://github.com/graphprotocol/stable-hash", branch = "main" } stable-hash_legacy = { git = "https://github.com/graphprotocol/stable-hash", branch = "old", package = "stable-hash" } -strum_macros = "0.27.2" +strum_macros = "0.28.0" slog-async = "2.5.0" slog-envlogger = "2.1.0" slog-term = "2.7.0"