forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (62 loc) · 1.64 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (62 loc) · 1.64 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "foundry-cli"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3.23"
foundry-utils = { path = "../utils" }
forge = { path = "../forge" }
cast = { path = "../cast" }
evm-adapters = { path = "../evm-adapters" }
# ethers = "0.5"
ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
eyre = "0.6.5"
color-eyre = "0.5"
rustc-hex = "2.1.0"
serde_json = "1.0.67"
tokio = { version = "1.11.0", features = ["macros"] }
regex = { version = "1.5.4", default-features = false }
ansi_term = "0.12.1"
rpassword = "5.0.1"
tracing-subscriber = "0.2.20"
tracing = "0.1.26"
hex = "0.4.3"
rayon = "1.5"
## EVM Implementations
# evm = { version = "0.30.1" }
sputnik = { package = "evm", git = "https://github.com/rust-blockchain/evm", optional = true }
evmodin = { git = "https://github.com/vorot93/evmodin", optional = true }
proptest = "1.0.0"
glob = "0.3.0"
semver = "1.0.4"
once_cell = "1.8.0"
[dev-dependencies]
tempdir = "0.3.7"
[features]
default = ["sputnik-evm", "rustls"]
solc-asm = ["ethers/solc-sha2-asm"]
rustls = ["ethers/rustls"]
openssl = ["ethers/openssl"]
sputnik-evm = [
"sputnik",
"evm-adapters/sputnik",
"evm-adapters/sputnik-helpers",
]
evmodin-evm = [
"evmodin",
"evmodin/util",
"evm-adapters/evmodin",
# needed to make the `HostExt` implementation for MockedHost accessible
# to this package
"evm-adapters/evmodin-helpers"
]
[[bin]]
name = "cast"
path = "src/cast.rs"
doc = false
[[bin]]
name = "forge"
path = "src/forge.rs"
doc = false