-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathCargo.toml
More file actions
132 lines (116 loc) · 3.42 KB
/
Copy pathCargo.toml
File metadata and controls
132 lines (116 loc) · 3.42 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
[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, features = ["full"] }
foundry-config.workspace = true
foundry-evm.workspace = true
foundry-evm-core.workspace = true
foundry-linking.workspace = true
comfy-table.workspace = true
eyre.workspace = true
proptest.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-lsp.workspace = true
forge-verify.workspace = true
forge-script.workspace = true
forge-sol-macro-gen.workspace = true
foundry-cli.workspace = true
foundry-debugger.workspace = true
alloy-chains.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-rpc-types.workspace = true
alloy-serde.workspace = true
alloy-signer.workspace = true
alloy-transport.workspace = true
revm.workspace = true
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help"] }
clap_complete = "4"
clap_complete_fig = "4"
dunce.workspace = true
indicatif.workspace = true
inferno = { version = "0.12", default-features = false }
itertools.workspace = true
parking_lot.workspace = true
regex = { workspace = true, default-features = false }
semver.workspace = true
serde_json.workspace = true
similar = { version = "2", features = ["inline"] }
solang-parser.workspace = true
solar-parse.workspace = true
solar-sema.workspace = true
strum = { workspace = true, features = ["derive"] }
thiserror.workspace = true
tokio = { workspace = true, features = ["time"] }
toml_edit = "0.23"
watchexec = "8.0"
watchexec-events = "6.0"
watchexec-signals = "5.0"
clearscreen = "4.0"
evm-disassembler.workspace = true
path-slash.workspace = true
tower-lsp = "0.20"
# doc server
axum = { workspace = true, features = ["ws"] }
tower-http = { workspace = true, features = ["fs"] }
opener = "0.8"
# soldeer
soldeer-commands.workspace = true
quick-junit = "0.5.1"
[dev-dependencies]
alloy-hardforks.workspace = true
anvil.workspace = true
forge-script-sequence.workspace = true
foundry-test-utils.workspace = true
foundry-wallets.workspace = true
futures.workspace = true
reqwest = { workspace = true, features = ["json"] }
mockall = "0.13"
globset = "0.4"
paste = "1.0"
similar-asserts.workspace = true
svm = { package = "svm-rs", version = "0.5", default-features = false, features = [
"rustls",
] }
tempfile.workspace = true
alloy-signer-local.workspace = true
[features]
default = ["jemalloc"]
asm-keccak = ["alloy-primitives/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"]
isolate-by-default = ["foundry-config/isolate-by-default"]