-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 loc) · 1001 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
25
26
[package]
name = "el-engine-simulator"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.6"
tokio = { version = "1", features = ["full"] }
hyper = { version = "0.14", features = ["full"] }
hyper-tls = "0.5"
tower-http = { version = "0.3", features = ["trace"] }
ethers = "1.0"
serde = "1.0"
serde_json = "1.0"
jsonrpsee = { version = "0.16", features = ["client", "macros"] }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "e8d7c051cab95a383f9bcd34c00bec3ea47adfa1" }
reth-rpc-types = { git = "https://github.com/paradigmxyz/reth", rev = "e8d7c051cab95a383f9bcd34c00bec3ea47adfa1" }
reth-rlp = { git = "https://github.com/paradigmxyz/reth", rev = "e8d7c051cab95a383f9bcd34c00bec3ea47adfa1" }
anvil-rpc = { git = "https://github.com/foundry-rs/foundry" }
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
clap = { version = "4", features = ["derive", "env"] }