-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (21 loc) · 868 Bytes
/
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
[package]
name = "reth-custom-api-example"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
clap = "4.4.2"
ethers = "2.0.9"
eyre = "0.6.8"
jsonrpsee = "0.20.0"
reth = { git = "https://github.com/paradigmxyz/reth", rev = "4865e59684fbf1457125feec0c06a30405bf4b60" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "4865e59684fbf1457125feec0c06a30405bf4b60" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "4865e59684fbf1457125feec0c06a30405bf4b60" }
serde = "1.0.188"
tracing = "0.1.37"
tokio = "1.32.0"
rand = "0.8.5"
[patch.crates-io]
revm = { git = "https://github.com/bluealloy/revm/", branch = "release/v25" }
revm-primitives = { git = "https://github.com/bluealloy/revm/", branch = "release/v25" }