-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathCargo.toml
More file actions
143 lines (127 loc) · 3.8 KB
/
Copy pathCargo.toml
File metadata and controls
143 lines (127 loc) · 3.8 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
[package]
name = "forge"
description = "Fast and flexible Ethereum testing framework"
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
[[bin]]
name = "forge"
path = "bin/main.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
harness = false
[dependencies]
# lib
foundry-block-explorers = { workspace = true, features = ["foundry-compilers"] }
foundry-common.workspace = true
foundry-compilers.workspace = true
foundry-config.workspace = true
foundry-evm.workspace = true
foundry-evm-networks.workspace = true
foundry-evm-symbolic.workspace = true
foundry-linking.workspace = true
comfy-table.workspace = true
eyre.workspace = true
proptest.workspace = true
rand.workspace = true
rayon.workspace = true
serde.workspace = true
tracing.workspace = true
yansi.workspace = true
chrono.workspace = true
# bin
forge-doc.workspace = true
forge-fmt.workspace = true
forge-lint.workspace = true
forge-verify.workspace = true
forge-script.workspace = true
forge-sol-macro-gen.workspace = true
foundry-cli.workspace = true
foundry-debugger.workspace = true
foundry-wallets = { workspace = true, features = ["browser", "tempo"] }
alloy-chains.workspace = true
alloy-consensus.workspace = true
alloy-dyn-abi.workspace = true
alloy-json-abi.workspace = true
alloy-network.workspace = true
alloy-primitives = { workspace = true, features = ["serde"] }
alloy-provider = { workspace = true, features = ["reqwest", "ws", "ipc"] }
alloy-signer.workspace = true
alloy-transport.workspace = true
tempo-alloy.workspace = true
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help"] }
clap_complete.workspace = true
dunce.workspace = true
globset = "0.4"
indicatif.workspace = true
inferno = { version = "0.12", default-features = false }
itertools.workspace = true
parking_lot.workspace = true
regex = { workspace = true, default-features = false }
revm = { workspace = true, features = ["parse"] }
semver.workspace = true
serde_json.workspace = true
similar = { version = "2", features = ["inline"] }
solar.workspace = true
strum = { workspace = true, features = ["derive"] }
thiserror.workspace = true
tokio = { workspace = true, features = ["time", "signal"] }
toml_edit.workspace = true
watchexec = "8.0"
watchexec-events = "6.0"
watchexec-signals = "5.0"
clearscreen = "4.0"
evm-disassembler.workspace = true
path-slash.workspace = true
reqwest = { workspace = true, features = ["json"] }
url.workspace = true
# doc server
axum = { workspace = true, features = ["ws"] }
tower-http = { workspace = true, features = ["fs"] }
opener = "0.8"
# soldeer
soldeer-commands.workspace = true
soldeer-core.workspace = true
quick-junit = "0.5.2"
tempfile.workspace = true
[dev-dependencies]
alloy-hardforks.workspace = true
anvil.workspace = true
axum.workspace = true
forge-script-sequence.workspace = true
foundry-test-utils.workspace = true
mockall = "0.14"
globset = "0.4"
similar-asserts.workspace = true
svm.workspace = true
tempfile.workspace = true
alloy-signer-local.workspace = true
[features]
default = ["jemalloc", "asm-keccak", "optimism"]
asm-keccak = ["alloy-primitives/asm-keccak", "revm/asm-keccak"]
jemalloc = ["foundry-cli/jemalloc"]
mimalloc = ["foundry-cli/mimalloc"]
tracy-allocator = ["foundry-cli/tracy-allocator"]
aws-kms = ["foundry-wallets/aws-kms"]
gcp-kms = ["foundry-wallets/gcp-kms"]
turnkey = ["foundry-wallets/turnkey"]
isolate-by-default = ["foundry-config/isolate-by-default"]
optimism = [
"foundry-evm/optimism",
"foundry-evm-networks/optimism",
"foundry-common/optimism",
"foundry-cli/optimism",
"forge-script/optimism",
"forge-verify/optimism",
"forge-doc/optimism",
"forge-fmt/optimism",
"forge-lint/optimism",
"forge-sol-macro-gen/optimism",
]