forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 1.18 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
[package]
name = "evm-adapters"
version = "0.1.0"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
foundry-utils = { path = "./../utils" }
sputnik = { package = "evm", git = "https://github.com/rust-blockchain/evm", optional = true, features = ["tracing"] }
evmodin = { git = "https://github.com/vorot93/evmodin", optional = true }
ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false, features = ["solc-full"] }
eyre = "0.6.5"
once_cell = "1.8.0"
tracing = "0.1.28"
bytes = "1.1.0"
tokio = { version = "1.12.0", features = ["rt-multi-thread", "macros"] }
hex = "0.4.3"
thiserror = "1.0.29"
proptest = "1.0.0"
parking_lot = "0.11.2"
futures = "0.3.17"
revm_precompiles = "0.1.0"
serde_json = "1.0.72"
serde = "1.0.130"
ansi_term = "0.12.1"
[dev-dependencies]
evmodin = { git = "https://github.com/vorot93/evmodin", features = ["util"] }
ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false, features = ["solc-full", "solc-tests"] }
[features]
sputnik-helpers = ["sputnik"]
evmodin-helpers = ["evmodin"]