-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
67 lines (57 loc) · 1.77 KB
/
Cargo.toml
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
[package]
name = "bolt-boost"
version = "0.4.0-alpha"
edition = "2021"
description = "Commit-Boost PBS module extension for bolt protocol"
authors = ["Chainbound Developers <[email protected]>"]
homepage = "https://github.com/chainbound/bolt"
repository = "https://github.com/chainbound/bolt/tree/unstable/bolt-boost"
[profile.release]
lto = true
debug = true
[dependencies]
# core
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
axum-extra = "0.10.0"
futures = "0.3"
async-trait = "0.1.85"
eyre = "0.6.12"
thiserror = "2.0.11"
reqwest = "0.12.12"
# crypto
ssz_rs = { git = "https://github.com/ralexstokes/ssz-rs", rev = "ec3073e" }
tree_hash = "0.8"
# tracing & metrics
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
prometheus = "0.13.4"
# serialization
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
ethereum_ssz = "0.8.2"
ethereum_ssz_derive = "0.8.2"
# alloy
alloy = { version = "0.8.3", features = ["signer-local", "provider-trace-api", "rpc-types-beacon", "rpc-types-engine"] }
alloy-rlp = "0.3.11"
# commit-boost
cb-common = { git = "https://github.com/commit-boost/commit-boost-client", rev = "v0.5.0" }
cb-pbs = { git = "https://github.com/commit-boost/commit-boost-client", rev = "v0.5.0" }
# other
rand = "0.8.5"
parking_lot = "0.12.3"
lazy_static = "1.5.0"
dashmap = "6.1.0"
uuid = "1.12.1"
[dev-dependencies]
# NOTE: we need this in order to play nice with Lighthouse types at version 6.0.1
ssz_compat = { version = "0.7.1", package = "ethereum_ssz" }
types = { git = "https://github.com/sigp/lighthouse", tag = "v6.0.1" }
[lints.clippy]
explicit_iter_loop = "warn"
if_not_else = "warn"
manual_let_else = "warn"
match_bool = "warn"
redundant_else = "warn"
unnecessary_self_imports = "warn"
use_self = "warn"