-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (81 loc) · 2.47 KB
/
Cargo.toml
File metadata and controls
94 lines (81 loc) · 2.47 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
[package]
name = "foundry-common"
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]
foundry-block-explorers = { workspace = true, features = ["foundry-compilers"] }
foundry-common-fmt.workspace = true
foundry-compilers.workspace = true
foundry-config.workspace = true
alloy-chains.workspace = true
alloy-dyn-abi = { workspace = true, features = ["arbitrary", "eip712"] }
alloy-eips.workspace = true
alloy-json-abi.workspace = true
alloy-json-rpc.workspace = true
alloy-primitives = { workspace = true, features = [
"serde",
"getrandom",
"arbitrary",
"rlp",
] }
alloy-provider.workspace = true
alloy-signer.workspace = true
alloy-pubsub.workspace = true
alloy-rpc-client.workspace = true
alloy-rpc-types = { workspace = true, features = ["eth", "engine"] }
alloy-rpc-types-engine = { workspace = true, features = ["jwt"] }
alloy-sol-types.workspace = true
alloy-transport-ipc.workspace = true
alloy-transport-ws.workspace = true
alloy-transport.workspace = true
alloy-consensus = { workspace = true, features = ["k256"] }
alloy-network.workspace = true
op-alloy-network.workspace = true
op-alloy-rpc-types.workspace = true
revm.workspace = true
solar.workspace = true
tower.workspace = true
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help"] }
alloy-rlp.workspace = true
comfy-table.workspace = true
dirs.workspace = true
dunce.workspace = true
eyre.workspace = true
itertools.workspace = true
jiff.workspace = true
num-format.workspace = true
path-slash.workspace = true
regex.workspace = true
reqwest.workspace = true
semver.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true
toml.workspace = true
tracing.workspace = true
url.workspace = true
walkdir.workspace = true
yansi.workspace = true
anstream.workspace = true
anstyle.workspace = true
ciborium.workspace = true
flate2.workspace = true
tempo-alloy.workspace = true
tempo-primitives.workspace = true
mpp.workspace = true
foundry-wallets = { workspace = true, features = ["browser", "tempo"] }
[build-dependencies]
chrono.workspace = true
vergen = { workspace = true, features = ["build", "emit_and_set"] }
[dev-dependencies]
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
axum = { workspace = true }
tempfile.workspace = true