-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
145 lines (126 loc) · 4.87 KB
/
Cargo.toml
File metadata and controls
145 lines (126 loc) · 4.87 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
144
145
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.16.0-rc.9"
edition = "2024"
rust-version = "1.88"
authors = ["init4"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/init4tech/node-components"
repository = "https://github.com/init4tech/node-components"
[profile.release]
opt-level = 3
lto = "thin"
debug = "line-tables-only"
strip = true
panic = "unwind"
codegen-units = 16
[profile.profiling]
inherits = "release"
debug = 2
strip = false
[profile.bench]
inherits = "profiling"
[profile.ci-rust]
inherits = "dev"
strip = true
debug = false
incremental = false
[workspace.dependencies]
signet-blobber = { version = "0.16.0-rc.9", path = "crates/blobber" }
signet-block-processor = { version = "0.16.0-rc.9", path = "crates/block-processor" }
signet-db = { version = "0.16.0-rc.9", path = "crates/db" }
signet-genesis = { version = "0.16.0-rc.9", path = "crates/genesis" }
signet-node = { version = "0.16.0-rc.9", path = "crates/node" }
signet-node-config = { version = "0.16.0-rc.9", path = "crates/node-config" }
signet-node-tests = { version = "0.16.0-rc.9", path = "crates/node-tests" }
signet-node-types = { version = "0.16.0-rc.9", path = "crates/node-types" }
signet-rpc = { version = "0.16.0-rc.9", path = "crates/rpc" }
init4-bin-base = { version = "0.18.0-rc.8", features = ["alloy"] }
signet-bundle = "0.16.0-rc.8"
signet-constants = "0.16.0-rc.8"
signet-evm = "0.16.0-rc.8"
signet-extract = "0.16.0-rc.8"
signet-test-utils = "0.16.0-rc.8"
signet-tx-cache = "0.16.0-rc.8"
signet-types = "0.16.0-rc.8"
signet-zenith = "0.16.0-rc.8"
signet-journal = "0.16.0-rc.8"
# ajj
ajj = { version = "0.3.4" }
# trevm
trevm = { version = "0.34.0", features = ["full_env_cfg"] }
revm-inspectors = "0.34.0" # should be 1 more than trevm version, usually
# Alloy periphery crates
alloy = { version = "1.4.0", features = [
"full",
"rpc-types-beacon",
"rpc-types-mev",
"genesis",
"arbitrary",
] }
alloy-contract = { version = "1.4.0", features = ["pubsub"] }
# Reth
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-codecs = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-db-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-db-common = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-eth-wire-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-exex = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-libmdbx = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-network-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-network-peers = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-prune-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-stages-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
# Foundry periphery
foundry-blob-explorers = "0.17"
# Async
tokio = { version = "1.43.0", features = ["macros"] }
async-trait = "0.1.87"
# Pinned for compatibility with reth
parking_lot = "0.12"
# Misc
chrono = "0.4.38"
clap = "4"
eyre = "0.6.12"
futures-util = "0.3.31"
hex = { package = "const-hex", version = "1.10", default-features = false, features = [
"alloc",
] }
itertools = "0.14.0"
metrics = "0.24.2"
openssl = { version = "0.10", features = ["vendored"] }
proptest = "1.6.0"
reqwest = "0.12.9"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
smallvec = "1.15.1"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
thiserror = "2.0.12"
url = "2.5.4"
uuid = "1.16.0"
# Test Utils
alloy-rlp = "0.3.11"
tempfile = "3.17.0"
# [patch.crates-io]
# signet-bundle = { path = "../sdk/crates/bundle"}
# signet-constants = { path = "../sdk/crates/constants"}
# signet-evm = { path = "../sdk/crates/evm"}
# signet-extract = { path = "../sdk/crates/extract"}
# signet-journal = { path = "../sdk/crates/journal"}
# signet-test-utils = { path = "../sdk/crates/test-utils"}
# signet-tx-cache = { path = "../sdk/crates/tx-cache"}
# signet-types = { path = "../sdk/crates/types"}
# signet-zenith = { path = "../sdk/crates/zenith"}
# init4-bin-base = { path = "../shared" }