-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
156 lines (134 loc) · 4.38 KB
/
Cargo.toml
File metadata and controls
156 lines (134 loc) · 4.38 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
146
147
148
149
150
151
152
153
154
155
156
[package]
name = "summit"
version.workspace = true
edition.workspace = true
[[bin]]
name = "testnet"
path = "src/bin/testnet.rs"
[[bin]]
name = "genesis"
path = "src/bin/genesis.rs"
[[bin]]
name = "stake-and-checkpoint"
path = "src/bin/stake_and_checkpoint.rs"
required-features = ["e2e"]
[[bin]]
name = "stake-and-join-with-outdated-checkpoint"
path = "src/bin/stake_and_join_with_outdated_ckpt.rs"
required-features = ["e2e"]
[[bin]]
name = "withdraw-and-exit"
path = "src/bin/withdraw_and_exit.rs"
required-features = ["e2e"]
[[bin]]
name = "protocol-params"
path = "src/bin/protocol_params.rs"
required-features = ["e2e"]
[[bin]]
name = "sync-from-genesis"
path = "src/bin/sync_from_genesis.rs"
required-features = ["e2e"]
[[bin]]
name = "verify-consensus-state-proof"
path = "src/bin/verify_consensus_state_proof.rs"
required-features = ["e2e"]
[[bin]]
name = "execute-blocks"
path = "src/bin/execute_blocks.rs"
required-features = ["bench"]
[dependencies]
summit-types.workspace = true
summit-application = { workspace = true, features = [] }
summit-rpc.workspace = true
summit-syncer.workspace = true
summit-finalizer.workspace = true
summit-orchestrator.workspace = true
commonware-broadcast.workspace = true
commonware-codec.workspace = true
commonware-consensus.workspace = true
commonware-cryptography.workspace = true
commonware-math.workspace = true
commonware-p2p.workspace = true
commonware-parallel.workspace = true
commonware-runtime.workspace = true
commonware-storage.workspace = true
commonware-utils.workspace = true
anyhow.workspace = true
eyre = { workspace = true, optional = true }
rand.workspace = true
tracing.workspace = true
clap.workspace = true
dirs.workspace = true
tokio = { version = "1.45.1", features = ["sync"] }
tokio-util.workspace = true
# stake and checkpoint bin deps
alloy = "1.0.23"
ethereum_ssz.workspace = true
jsonrpsee.workspace = true
# testnet bin deps
alloy-node-bindings.workspace = true
alloy-network = { workspace = true }
alloy-primitives.workspace = true
alloy-provider = { version = "1.0.30", features = ["reqwest-rustls-tls"] }
alloy-rpc-client.workspace = true
alloy-rpc-types-engine = { version = "1.0.9", features = ["serde"] }
op-alloy-consensus = { version = "0.19.1", default-features = false, features = ["alloy-compat"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-appender = "0.2"
logroller = "0.1"
serde.workspace = true
serde_json.workspace = true
toml.workspace = true
zeroize.workspace = true
futures.workspace = true
governor.workspace = true
http = { workspace = true, optional = true }
# for prom
prometheus = { version = "0.14", optional = true }
reth-metrics = { git = "https://github.com/SeismicSystems/seismic-reth.git", branch = "seismic", optional = true }
metrics = { version = "0.24.0", optional = true }
metrics-exporter-prometheus = { version = "0.16.0", default-features = false, optional = true }
metrics-process = { version = "2.1.0", optional = true }
metrics-util = { default-features = false, version = "0.19.0", optional = true }
jsonrpsee-server = { version = "0.25.1", optional = true }
tower = { version = "0.5.2", optional = false }
reqwest.workspace = true
console-subscriber = { workspace = true, optional = true }
[target.'cfg(unix)'.dependencies]
tikv-jemalloc-ctl = { version = "0.6", optional = true, features = ["stats"] }
[target.'cfg(target_os = "linux")'.dependencies]
procfs = { version = "0.17.0", optional = true }
[dev-dependencies]
commonware-macros.workspace = true
tracing-subscriber = "0.3.19"
# test harness (move to dev-deps later)
alloy-rpc-types-engine.workspace = true
alloy-consensus.workspace = true
dashmap = "6.1.0"
sha3 = "0.10.8"
alloy-eips = "1.0.23"
reqwest.workspace = true
reth-tasks = { git = "https://github.com/SeismicSystems/seismic-reth.git", branch = "seismic" }
socket2.workspace = true
tokio = { workspace = true, features = ["full", "rt-multi-thread", "time"] }
alloy-signer.workspace = true
[features]
prom = [
"prometheus",
"reth-metrics",
"metrics",
"metrics-exporter-prometheus",
"metrics-process",
"metrics-util",
"jsonrpsee-server",
"http",
"eyre",
"procfs",
"summit-types/prom",
]
tokio-console = ["console-subscriber"]
jemalloc = ["dep:tikv-jemalloc-ctl"]
bench = ["summit-application/bench", "summit-types/bench"]
permissioned = ["summit-application/permissioned", "summit-rpc/permissioned"]
e2e = ["summit-types/e2e"]
bad-blocks = ["summit-types/bad-blocks"]