dep: pin alloy & revm inspectors (#6512)

This commit is contained in:
Roman Krasiuk
2024-02-09 16:55:50 +01:00
committed by GitHub
parent e23eeeee01
commit 1127af6841
2 changed files with 12 additions and 12 deletions

12
Cargo.lock generated
View File

@ -173,7 +173,7 @@ dependencies = [
[[package]]
name = "alloy-genesis"
version = "0.1.0"
source = "git+https://github.com/alloy-rs/alloy?branch=main#80206e7ba7686c514da291c06a5e7912b5361047"
source = "git+https://github.com/alloy-rs/alloy?rev=80206e7#80206e7ba7686c514da291c06a5e7912b5361047"
dependencies = [
"alloy-primitives",
"alloy-rpc-types",
@ -195,7 +195,7 @@ dependencies = [
[[package]]
name = "alloy-node-bindings"
version = "0.1.0"
source = "git+https://github.com/alloy-rs/alloy?branch=main#80206e7ba7686c514da291c06a5e7912b5361047"
source = "git+https://github.com/alloy-rs/alloy?rev=80206e7#80206e7ba7686c514da291c06a5e7912b5361047"
dependencies = [
"alloy-genesis",
"alloy-primitives",
@ -256,7 +256,7 @@ dependencies = [
[[package]]
name = "alloy-rpc-engine-types"
version = "0.1.0"
source = "git+https://github.com/alloy-rs/alloy?branch=main#80206e7ba7686c514da291c06a5e7912b5361047"
source = "git+https://github.com/alloy-rs/alloy?rev=80206e7#80206e7ba7686c514da291c06a5e7912b5361047"
dependencies = [
"alloy-primitives",
"alloy-rlp",
@ -271,7 +271,7 @@ dependencies = [
[[package]]
name = "alloy-rpc-trace-types"
version = "0.1.0"
source = "git+https://github.com/alloy-rs/alloy?branch=main#80206e7ba7686c514da291c06a5e7912b5361047"
source = "git+https://github.com/alloy-rs/alloy?rev=80206e7#80206e7ba7686c514da291c06a5e7912b5361047"
dependencies = [
"alloy-primitives",
"alloy-rpc-types",
@ -282,7 +282,7 @@ dependencies = [
[[package]]
name = "alloy-rpc-types"
version = "0.1.0"
source = "git+https://github.com/alloy-rs/alloy?branch=main#80206e7ba7686c514da291c06a5e7912b5361047"
source = "git+https://github.com/alloy-rs/alloy?rev=80206e7#80206e7ba7686c514da291c06a5e7912b5361047"
dependencies = [
"alloy-primitives",
"alloy-rlp",
@ -7017,7 +7017,7 @@ dependencies = [
[[package]]
name = "revm-inspectors"
version = "0.1.0"
source = "git+https://github.com/paradigmxyz/evm-inspectors?branch=onbjerg/rm-callrequest#70807da74e46641532f67caac9e37fbf5d7080c1"
source = "git+https://github.com/paradigmxyz/evm-inspectors?rev=67ab6a0#67ab6a0391a340be8eae7fa88bcfa7b2aaef1724"
dependencies = [
"alloy-primitives",
"alloy-rpc-trace-types",

View File

@ -175,7 +175,7 @@ revm = { git = "https://github.com/bluealloy/revm", branch = "main", features =
revm-primitives = { git = "https://github.com/bluealloy/revm", branch = "main", features = [
"std",
], default-features = false }
revm-inspectors = { git = "https://github.com/paradigmxyz/evm-inspectors", branch = "onbjerg/rm-callrequest" }
revm-inspectors = { git = "https://github.com/paradigmxyz/evm-inspectors", rev = "67ab6a0" }
# eth
alloy-chains = { version = "0.1", feature = ["serde", "rlp", "arbitrary"] }
@ -184,11 +184,11 @@ alloy-dyn-abi = "0.6"
alloy-sol-types = "0.6"
alloy-rlp = "0.3"
alloy-trie = "0.2"
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", branch = "main" }
alloy-rpc-trace-types = { git = "https://github.com/alloy-rs/alloy", branch = "main" }
alloy-rpc-engine-types = { git = "https://github.com/alloy-rs/alloy", branch = "main" }
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", branch = "main" }
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", branch = "main" }
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "80206e7" }
alloy-rpc-trace-types = { git = "https://github.com/alloy-rs/alloy", rev = "80206e7" }
alloy-rpc-engine-types = { git = "https://github.com/alloy-rs/alloy", rev = "80206e7" }
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "80206e7" }
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", rev = "80206e7" }
ethers-core = { version = "2.0", default-features = false }
ethers-providers = { version = "2.0", default-features = false }
ethers-signers = { version = "2.0", default-features = false }