-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) · 1.48 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (48 loc) · 1.48 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
[package]
name = "cb-testnet-verifier"
default-run = "cb-verify"
version = "0.1.0"
edition = "2024"
rust-version = "1.91"
description = "Automated verification for Commit-Boost Kurtosis testnets"
license = "MIT"
[lib]
name = "cb_testnet_verifier"
path = "src/lib.rs"
[[bin]]
name = "cb-verify"
path = "src/main.rs"
[[bin]]
name = "cb-orchestrator"
path = "src/orchestrator.rs"
[[bin]]
name = "sim"
path = "src/bin/sim/main.rs"
[dependencies]
alloy-primitives = "^1.3.1"
alloy-rpc-types-beacon = "^1.0.35"
clap = { version = "4.5", features = ["derive"] }
colored = "3"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
eyre = "0.6"
color-eyre = "0.6"
prometheus-parse = "0.2"
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# HS256 JWT minting for the Commit-Boost signer module API. Hand-rolled rather
# than pulling `jsonwebtoken`: CB binds the JWT to the exact request ROUTE and to
# a keccak256 payload hash that must be NULL when there is no body, and getting
# those claims exactly right matters more than the ~20 lines saved.
hmac = "0.12"
sha2 = "0.10"
base64 = "0.22"
futures = "0.3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "process", "net", "signal", "sync"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
serde_yaml = "0.9.34"
toml = "0.8"
[profile.release]
strip = true
lto = "thin"