From d533da022ec6a1d3eae62c83011048c08f768621 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Mon, 1 Apr 2024 02:37:23 +0200 Subject: [PATCH] chore(deps): bump other alloy deps 0.7.0 (#1252) --- Cargo.lock | 61 +++++++++++++++++++-------------------- bins/revm-test/Cargo.toml | 4 +-- 2 files changed, 32 insertions(+), 33 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cad509e7b46..0e05b742e23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -44,28 +44,6 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" -[[package]] -name = "alloy-primitives" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "600d34d8de81e23b6d909c094e23b3d357e01ca36b78a8c5424c501eedbe86f0" -dependencies = [ - "alloy-rlp", - "bytes", - "cfg-if", - "const-hex", - "derive_more", - "hex-literal", - "itoa", - "k256", - "keccak-asm", - "proptest", - "rand", - "ruint", - "serde", - "tiny-keccak", -] - [[package]] name = "alloy-primitives" version = "0.7.0" @@ -116,12 +94,12 @@ 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 0.4.1", "indexmap", "proc-macro-error", @@ -132,13 +110,28 @@ 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.55", + "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 0.6.4", + "alloy-primitives", "alloy-sol-macro", "const-hex", "serde", @@ -1396,6 +1389,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 = "hermit-abi" version = "0.1.19" @@ -2387,7 +2386,7 @@ dependencies = [ name = "revm-primitives" version = "3.1.0" dependencies = [ - "alloy-primitives 0.7.0", + "alloy-primitives", "auto_impl", "bitflags 2.5.0", "bitvec", @@ -3005,9 +3004,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", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index d3cbcc6d3c4..44559d50cf6 100644 --- a/bins/revm-test/Cargo.toml +++ b/bins/revm-test/Cargo.toml @@ -9,8 +9,8 @@ bytes = "1.6" hex = "0.4" revm = { path = "../../crates/revm", version = "7.2.0",default-features=false } microbench = "0.5" -alloy-sol-macro = "0.6.4" -alloy-sol-types = "0.6.4" +alloy-sol-macro = "0.7.0" +alloy-sol-types = "0.7.0" regex = "1.10.4" eyre = "0.6.12"