forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (29 loc) · 884 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
27
28
29
30
31
32
[package]
name = "forge"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
foundry-utils = { path = "./../utils" }
foundry-config = { path = "./../config" }
foundry-evm = { path = "./../evm" }
ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false, features = ["solc-full"] }
eyre = "0.6.5"
semver = "1.0.5"
serde_json = "1.0.67"
serde = "1.0.130"
regex = { version = "1.5.4", default-features = false }
hex = "0.4.3"
glob = "0.3.0"
# TODO: Trim down
tokio = { version = "1.10.1" }
tracing = "0.1.26"
tracing-subscriber = "=0.3.9"
proptest = "1.0.0"
rayon = "1.5"
rlp = "0.5.1"
once_cell = "1.9.0"
comfy-table = "5.0.0"
[dev-dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false, features = ["solc-full", "solc-tests"] }
foundry-utils = { path = "./../utils", features = ["test"] }