-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathCargo.toml
65 lines (58 loc) · 1.48 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
59
60
61
62
63
64
65
[package]
name = "foundry-evm-core"
description = "Core EVM abstractions"
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-cheatcodes-spec.workspace = true
foundry-common.workspace = true
foundry-config.workspace = true
foundry-evm-abi.workspace = true
alloy-dyn-abi = { workspace = true, features = ["arbitrary", "eip712"] }
alloy-genesis.workspace = true
alloy-json-abi.workspace = true
alloy-primitives = { workspace = true, features = [
"serde",
"getrandom",
"arbitrary",
"rlp",
] }
alloy-provider.workspace = true
alloy-network.workspace = true
alloy-consensus.workspace = true
alloy-rpc-types.workspace = true
alloy-sol-types.workspace = true
foundry-fork-db.workspace = true
revm = { workspace = true, features = [
"std",
"serde",
"memory_limit",
"optional_eip3607",
"optional_block_gas_limit",
"optional_no_base_fee",
"arbitrary",
"optimism",
"c-kzg",
"blst",
] }
revm-inspectors.workspace = true
auto_impl.workspace = true
eyre.workspace = true
futures.workspace = true
itertools.workspace = true
parking_lot.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["time", "macros"] }
tracing.workspace = true
url.workspace = true
[dev-dependencies]
foundry-test-utils.workspace = true