-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 919 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 919 Bytes
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
[package]
name = "signet-node"
description = "Core Signet rollup node: block processing, state management, and lifecycle orchestration"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
signet-blobber.workspace = true
signet-block-processor.workspace = true
signet-cold.workspace = true
signet-evm.workspace = true
signet-extract.workspace = true
signet-genesis.workspace = true
signet-hot.workspace = true
signet-node-config.workspace = true
signet-node-types.workspace = true
signet-rpc.workspace = true
signet-storage.workspace = true
signet-tx-cache.workspace = true
signet-types.workspace = true
alloy.workspace = true
trevm.workspace = true
eyre.workspace = true
metrics.workspace = true
reqwest.workspace = true
tokio.workspace = true
tracing.workspace = true