diff --git a/Cargo.lock b/Cargo.lock index c511d00601f..d276b2b1bc8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1868,7 +1868,7 @@ dependencies = [ "sqlparser", "stable-hash 0.3.4", "stable-hash 0.4.4", - "strum_macros", + "strum_macros 0.27.1", "thiserror 1.0.61", "tiny-keccak 1.5.0", "tokio", @@ -4779,7 +4779,7 @@ version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" dependencies = [ - "strum_macros", + "strum_macros 0.26.4", ] [[package]] @@ -4795,6 +4795,19 @@ dependencies = [ "syn 2.0.87", ] +[[package]] +name = "strum_macros" +version = "0.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.87", +] + [[package]] name = "substreams" version = "0.6.0" diff --git a/graph/Cargo.toml b/graph/Cargo.toml index 3ea0c0bf349..881725fe6bc 100644 --- a/graph/Cargo.toml +++ b/graph/Cargo.toml @@ -58,7 +58,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", doc = false } -strum_macros = "0.26.4" +strum_macros = "0.27.1" slog-async = "2.5.0" slog-envlogger = "2.1.0" slog-term = "2.7.0"