diff --git a/Cargo.lock b/Cargo.lock index 2e1df47..718c17f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,9 +13,9 @@ dependencies = [ [[package]] name = "alloy-primitives" -version = "0.6.4" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "600d34d8de81e23b6d909c094e23b3d357e01ca36b78a8c5424c501eedbe86f0" +checksum = "99bbad0a6b588ef4aec1b5ddbbfdacd9ef04e00b979617765b03174318ee1f3a" dependencies = [ "alloy-rlp", "bytes", @@ -45,13 +45,13 @@ dependencies = [ [[package]] name = "alloy-sol-macro" -version = "0.6.4" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e86ec0a47740b20bc5613b8712d0d321d031c4efc58e9645af96085d5cccfc27" +checksum = "452d929748ac948a10481fff4123affead32c553cf362841c5103dd508bdfc16" dependencies = [ + "alloy-sol-macro-input", "const-hex", - "dunce", - "heck", + "heck 0.4.1", "indexmap 2.2.6", "proc-macro-error", "proc-macro2", @@ -61,11 +61,26 @@ dependencies = [ "tiny-keccak", ] +[[package]] +name = "alloy-sol-macro-input" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df64e094f6d2099339f9e82b5b38440b159757b6920878f28316243f8166c8d1" +dependencies = [ + "const-hex", + "dunce", + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.57", + "syn-solidity", +] + [[package]] name = "alloy-sol-types" -version = "0.6.4" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad09ec5853fa700d12d778ad224dcdec636af424d29fad84fb9a2f16a5b0ef09" +checksum = "43bc2d6dfc2a19fd56644494479510f98b1ee929e04cf0d4aa45e98baa3e545b" dependencies = [ "alloy-primitives", "alloy-sol-macro", @@ -805,6 +820,12 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + [[package]] name = "hex" version = "0.4.3" @@ -984,7 +1005,6 @@ dependencies = [ "elliptic-curve", "once_cell", "sha2", - "signature", ] [[package]] @@ -1734,7 +1754,7 @@ version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" dependencies = [ - "heck", + "heck 0.4.1", "proc-macro2", "quote", "rustversion", @@ -1771,9 +1791,9 @@ dependencies = [ [[package]] name = "syn-solidity" -version = "0.6.4" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb3d0961cd53c23ea94eeec56ba940f636f6394788976e9f16ca5ee0aca7464a" +checksum = "4497156948bd342b52038035a6fa514a89626e37af9d2c52a5e8d8ebcc7ee479" dependencies = [ "paste", "proc-macro2", @@ -1812,9 +1832,9 @@ dependencies = [ [[package]] name = "thegraph-core" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f874cf1a3d2d9d6ec3324e98a609b190da73ff00f547e7231635e17adef20a3" +checksum = "04bc4de6918f6436f78300b2f4a974cbcaa869dc63d47f492e160da99986a076" dependencies = [ "alloy-primitives", "alloy-sol-types", diff --git a/indexer-selection/Cargo.toml b/indexer-selection/Cargo.toml index 90840d2..37d9a3e 100644 --- a/indexer-selection/Cargo.toml +++ b/indexer-selection/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" candidate-selection = { path = "../candidate-selection" } custom_debug = "0.6.1" rand = { version = "0.8.5", default-features = false } -thegraph-core = "0.2.2" +thegraph-core = "0.2.3" url = "2.5.0" [dev-dependencies] diff --git a/simulator/Cargo.toml b/simulator/Cargo.toml index 8e2bdf4..2f9ac9a 100644 --- a/simulator/Cargo.toml +++ b/simulator/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" candidate-selection = { path = "../candidate-selection" } indexer-selection = { path = "../indexer-selection" } rand = { version = "0.8.5", default-features = true, features = ["small_rng"] } -thegraph-core = "0.2.2" +thegraph-core = "0.2.3"