-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
118 lines (102 loc) · 3.22 KB
/
Cargo.toml
File metadata and controls
118 lines (102 loc) · 3.22 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.17.2"
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.17.2", path = "crates/blobber" }
signet-block-processor = { version = "0.17.2", path = "crates/block-processor" }
signet-genesis = { version = "0.17.2", path = "crates/genesis" }
signet-host-reth = { version = "0.17.2", path = "crates/host-reth" }
signet-host-rpc = { version = "0.17.2", path = "crates/host-rpc" }
signet-node = { version = "0.17.2", path = "crates/node" }
signet-node-config = { version = "0.17.2", path = "crates/node-config" }
signet-node-tests = { version = "0.17.2", path = "crates/node-tests" }
signet-node-types = { version = "0.17.2", path = "crates/node-types" }
signet-rpc = { version = "0.17.2", path = "crates/rpc" }
init4-bin-base = { version = "0.19.1", features = ["alloy"] }
signet-bundle = "0.16.0"
signet-constants = "0.16.0"
signet-evm = "0.16.0"
signet-extract = "0.16.0"
signet-test-utils = "0.16.0"
signet-tx-cache = "0.16.0"
signet-types = "0.16.0"
signet-zenith = "0.16.0"
signet-journal = "0.16.0"
signet-storage = "0.7"
signet-cold = "0.7"
signet-hot = "0.7"
signet-hot-mdbx = "0.7"
signet-cold-mdbx = "0.7"
signet-storage-types = "0.7"
# ajj
ajj = "0.7.0"
# 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",
] }
# Reth
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0" }
reth-chainspec = { 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-node-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"] }
tokio-stream = "0.1"
tokio-util = "0.7"
# Misc
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"] }
reqwest = "0.12.9"
schnellru = "0.2"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
thiserror = "2.0.12"
url = "2.5.4"
# Test Utils
tempfile = "3.17.0"