-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (74 loc) · 2.01 KB
/
Cargo.toml
File metadata and controls
80 lines (74 loc) · 2.01 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
[package]
name = "rollup-node-primitives"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
exclude.workspace = true
[lints]
workspace = true
[dependencies]
# alloy
alloy-chains.workspace = true
alloy-consensus.workspace = true
alloy-eips.workspace = true
alloy-primitives.workspace = true
alloy-rpc-types-engine.workspace = true
# scroll
scroll-alloy-consensus.workspace = true
scroll-alloy-rpc-types-engine.workspace = true
reth-scroll-chainspec.workspace = true
# reth
reth-network-peers.workspace = true
reth-primitives-traits.workspace = true
reth-scroll-primitives.workspace = true
reth-chainspec.workspace = true
reth-node-core.workspace = true
# misc
arbitrary = { workspace = true, optional = true }
derive_more = { workspace = true, features = ["from"] }
eyre.workspace = true
serde.workspace = true
[features]
default = ["std"]
std = [
"alloy-primitives/std",
"alloy-rpc-types-engine/std",
"scroll-alloy-consensus/std",
"derive_more/std",
"scroll-alloy-rpc-types-engine/std",
"alloy-eips/std",
"reth-scroll-primitives/std",
"reth-primitives-traits/std",
"alloy-consensus/std",
"alloy-chains/std",
"reth-chainspec/std",
"reth-scroll-chainspec/std",
"reth-network-peers/std",
]
arbitrary = [
"std",
"dep:arbitrary",
"alloy-primitives/arbitrary",
"scroll-alloy-consensus/arbitrary",
"alloy-eips/arbitrary",
"scroll-alloy-rpc-types-engine/arbitrary",
"reth-scroll-primitives/arbitrary",
"reth-scroll-primitives/std",
"reth-primitives-traits/arbitrary",
"alloy-consensus/arbitrary",
"alloy-rpc-types-engine/arbitrary",
"alloy-chains/arbitrary",
"reth-chainspec/arbitrary",
]
serde = [
"alloy-chains/serde",
"alloy-consensus/serde",
"alloy-eips/serde",
"alloy-primitives/serde",
"alloy-rpc-types-engine/serde",
"reth-primitives-traits/serde",
"reth-scroll-primitives/serde",
"scroll-alloy-consensus/serde",
"scroll-alloy-rpc-types-engine/serde",
]