-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 2.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "alloy-reth-rpc-layer"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
# alloy
alloy-primitives = "0.8.22"
alloy-provider = "0.11.1"
alloy-rpc-client = "0.11.1"
alloy-transport = "0.11.1"
# reth
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", rev = "9f3041c" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", rev = "9f3041c" }
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", rev = "9f3041c" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "9f3041c" }
reth-rpc = { git = "https://github.com/paradigmxyz/reth", rev = "9f3041c" }
reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth", rev = "9f3041c" }
reth-storage-api = { git = "https://github.com/paradigmxyz/reth", rev = "9f3041c" }
[patch.crates-io]
alloy-evm = { git = "https://github.com/alloy-rs/evm", rev = "04fa394" }
alloy-op-evm = { git = "https://github.com/alloy-rs/evm", rev = "04fa394" }
revm = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-bytecode = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-context = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-context-interface = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-database = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-database-interface = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-inspector = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-interpreter = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-optimism = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-specification = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-state = { git = "https://github.com/bluealloy/revm", rev = "a8a9893b" }
revm-inspectors = { git = "https://github.com/paradigmxyz/revm-inspectors", rev = "8900c2b" }