-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathCargo.toml
58 lines (49 loc) · 1.49 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
50
51
52
53
54
55
56
57
58
[package]
name = "foundry-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
forge-fmt.workspace = true
foundry-common.workspace = true
foundry-config.workspace = true
foundry-debugger.workspace = true
foundry-evm.workspace = true
foundry-wallets.workspace = true
foundry-compilers = { workspace = true, features = ["full"] }
alloy-eips.workspace = true
alloy-dyn-abi.workspace = true
alloy-json-abi.workspace = true
alloy-primitives.workspace = true
alloy-provider.workspace = true
alloy-rlp.workspace = true
alloy-chains.workspace = true
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help"] }
color-eyre.workspace = true
dotenvy = "0.15"
eyre.workspace = true
futures.workspace = true
indicatif.workspace = true
itertools.workspace = true
rayon.workspace = true
regex = { workspace = true, default-features = false }
serde_json.workspace = true
serde.workspace = true
strsim = "0.11"
strum = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["macros"] }
tracing-subscriber = { workspace = true, features = ["registry", "env-filter"] }
tracing.workspace = true
yansi.workspace = true
rustls = { workspace = true, features = ["ring"] }
tracing-tracy = { version = "0.11", optional = true }
[dev-dependencies]
tempfile.workspace = true
[features]
tracy = ["dep:tracing-tracy"]