-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
24 lines (23 loc) · 922 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 = "revm-passthrough-proxy"
version = "0.1.0"
edition = "2021"
[dependencies]
anvil = { git="https://github.com/foundry-rs/foundry.git" }
foundry-evm = { git="https://github.com/foundry-rs/foundry.git" }
foundry-common = { git="https://github.com/foundry-rs/foundry.git" }
jsonrpsee = "0.24.4"
tokio = { version="1.40.0", features=["full"] }
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
reth-rpc-eth-api = { git="https://github.com/paradigmxyz/reth.git" }
reth-rpc-eth-types = { git="https://github.com/paradigmxyz/reth.git" }
reth-rpc-types = { git="https://github.com/paradigmxyz/reth.git" }
reth-primitives = { git="https://github.com/paradigmxyz/reth.git" }
reth-revm = { git="https://github.com/paradigmxyz/reth.git" }
tracing = "0.1.40"
async-trait = "0.1.82"
eyre = "0.6.12"
alloy-provider = "0.3.5"
serde_json = "1.0.128"
alloy-json-rpc = "0.3.5"
jsonrpsee-types = "0.24.4"