forked from paradigmxyz/pyrevm
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 722 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 722 Bytes
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
[package]
name = "foundry-simulator"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "foundry-simulator"
path = "src/fosim.rs"
[dependencies]
anyhow = "1.0.68"
futures = "0.3"
primitive-types = "0.11.0"
revm = "2.1.0"
clap = { version = "4.0" }
bytes = "1.2.1"
ethers = { git = "https://github.com/gakonst/ethers-rs", features = [
"legacy",
"eip712",
"abigen-offline",
"solc-full",
] }
foundry-cli = { git = "https://github.com/foundry-rs/foundry" }
foundry-common = { git = "https://github.com/foundry-rs/foundry" }
foundry-evm = { git = "https://github.com/foundry-rs/foundry" }
hex = "0.4.3"
eyre = "0.6.8"
serde = "1.0.133"
serde_json = "1.0.67"
tokio = { version = "1.21.2", features = ["full"] }