forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (40 loc) · 1.05 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
41
42
43
44
45
46
47
48
49
[package]
name = "foundry-evm"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "../README.md"
repository = "https://github.com/foundry-rs/foundry"
keywords = ["ethereum", "web3", "evm"]
# TODO: We can probably reduce dependencies here or in the forge crate
[dependencies]
foundry-utils = { path = "./../utils" }
foundry-common = { path = "./../common" }
# Encoding/decoding
serde_json = "1.0.67"
serde = "1.0.130"
hex = "0.4.3"
ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false, features = ["solc-full"] }
# Error handling
eyre = "0.6.5"
thiserror = "1.0.29"
# Logging
tracing = "0.1.26"
tracing-subscriber = "0.3.11"
tracing-error = "0.2.0"
# Threading/futures
tokio = { version = "1.10.1" }
parking_lot = "0.12.0"
futures = "0.3.21"
once_cell = "1.9.0"
# EVM
bytes = "1.1.0"
hashbrown = "0.12"
revm = { version="1.3", default-features = false, features = ["std", "k256", "with-serde", "memory_limit"] }
# Fuzzer
proptest = "1.0.0"
# Display
yansi = "0.5.1"
url = "2.2.2"
[dev-dependencies]
tempfile = "3.3.0"