diff --git a/Cargo.lock b/Cargo.lock index 81b5331..1f2aca1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -321,6 +321,24 @@ dependencies = [ "thiserror 2.0.18", ] +[[package]] +name = "alloy-evm" +version = "0.28.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d432029684c0239fcf8ddcfd3c61b1887210867548edf5b53a3288772b02478" +dependencies = [ + "alloy-consensus", + "alloy-eips", + "alloy-hardforks", + "alloy-primitives", + "alloy-sol-types", + "auto_impl", + "derive_more", + "revm", + "thiserror 2.0.18", + "tracing", +] + [[package]] name = "alloy-genesis" version = "1.7.3" @@ -2942,7 +2960,7 @@ dependencies = [ "alloy-consensus", "alloy-consensus-any", "alloy-eips", - "alloy-evm", + "alloy-evm 0.28.1", "alloy-genesis", "alloy-network", "alloy-primitives", @@ -3014,7 +3032,7 @@ name = "ev-precompiles" version = "0.1.0" dependencies = [ "alloy", - "alloy-evm", + "alloy-evm 0.28.1", "alloy-primitives", "bytes", "eyre", @@ -3047,7 +3065,7 @@ name = "ev-reth" version = "0.1.0" dependencies = [ "alloy-eips", - "alloy-evm", + "alloy-evm 0.28.1", "alloy-network", "alloy-primitives", "alloy-rpc-types", @@ -3089,7 +3107,7 @@ dependencies = [ name = "ev-revm" version = "0.1.0" dependencies = [ - "alloy-evm", + "alloy-evm 0.28.1", "alloy-primitives", "alloy-sol-types", "ev-precompiles", @@ -6483,7 +6501,7 @@ dependencies = [ "alloy-chains", "alloy-consensus", "alloy-eips", - "alloy-evm", + "alloy-evm 0.27.3", "alloy-genesis", "alloy-primitives", "alloy-trie", @@ -7095,7 +7113,7 @@ dependencies = [ "alloy-consensus", "alloy-eip7928", "alloy-eips", - "alloy-evm", + "alloy-evm 0.27.3", "alloy-primitives", "alloy-rlp", "alloy-rpc-types-engine", @@ -7466,7 +7484,7 @@ source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.11.2#793a3d5fb3e341 dependencies = [ "alloy-consensus", "alloy-eips", - "alloy-evm", + "alloy-evm 0.27.3", "alloy-primitives", "auto_impl", "derive_more", @@ -7490,7 +7508,7 @@ source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.11.2#793a3d5fb3e341 dependencies = [ "alloy-consensus", "alloy-eips", - "alloy-evm", + "alloy-evm 0.27.3", "alloy-primitives", "alloy-rpc-types-engine", "derive_more", @@ -7510,7 +7528,7 @@ name = "reth-execution-errors" version = "1.11.2" source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.11.2#793a3d5fb3e3413e9ecc9b024a5e26672e61e7c3" dependencies = [ - "alloy-evm", + "alloy-evm 0.27.3", "alloy-primitives", "alloy-rlp", "nybbles", @@ -7525,7 +7543,7 @@ source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.11.2#793a3d5fb3e341 dependencies = [ "alloy-consensus", "alloy-eips", - "alloy-evm", + "alloy-evm 0.27.3", "alloy-primitives", "derive_more", "reth-ethereum-primitives", @@ -8351,7 +8369,7 @@ dependencies = [ "alloy-dyn-abi", "alloy-eip7928", "alloy-eips", - "alloy-evm", + "alloy-evm 0.27.3", "alloy-genesis", "alloy-network", "alloy-primitives", @@ -8496,7 +8514,7 @@ version = "1.11.2" source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.11.2#793a3d5fb3e3413e9ecc9b024a5e26672e61e7c3" dependencies = [ "alloy-consensus", - "alloy-evm", + "alloy-evm 0.27.3", "alloy-json-rpc", "alloy-network", "alloy-primitives", @@ -8549,7 +8567,7 @@ dependencies = [ "alloy-consensus", "alloy-dyn-abi", "alloy-eips", - "alloy-evm", + "alloy-evm 0.27.3", "alloy-json-rpc", "alloy-network", "alloy-primitives", @@ -8592,7 +8610,7 @@ source = "git+https://github.com/paradigmxyz/reth.git?tag=v1.11.2#793a3d5fb3e341 dependencies = [ "alloy-consensus", "alloy-eips", - "alloy-evm", + "alloy-evm 0.27.3", "alloy-network", "alloy-primitives", "alloy-rpc-client", diff --git a/Cargo.toml b/Cargo.toml index a1131a7..9da2f03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -94,7 +94,7 @@ alloy = { version = "1.6.3", features = [ "signers", "reqwest-rustls-tls", ], default-features = false } -alloy-evm = { version = "0.27.2", default-features = false } +alloy-evm = { version = "0.28.1", default-features = false } alloy-eips = { version = "1.6.3", default-features = false } alloy-network = { version = "1.6.3", default-features = false } alloy-provider = { version = "1.6.3", default-features = false }