-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathCargo.toml
57 lines (48 loc) · 1.33 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
[package]
name = "bolt"
version = "0.1.1"
edition = "2021"
[dependencies]
# async
tokio = { version = "1.43.0", features = ["full"] }
futures = "0.3.31"
# cli
clap = { version = "4.5.4", features = ["derive", "env"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
# grpc
rustls = { version = "0.23.20", features = ["ring"] }
tonic = { version = "0.12.3", features = ["tls"] }
prost = "0.13.4"
# crypto
blst = "0.3.12"
bls12_381 = "0.8.0"
# ethereum
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "cf3c404" }
lighthouse_eth2_keystore = { package = "eth2_keystore", git = "https://github.com/sigp/lighthouse", rev = "a87f19d" }
alloy = { version = "0.9.2", features = ["full", "provider-anvil-api", "provider-anvil-node"] }
# utils
dotenvy = "0.15.7"
eyre = "0.6.12"
thiserror = "2.0"
hex = "0.4.3"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
reqwest = { version = "0.12.9", features = ["rustls-tls"] }
rand = "0.8.5"
lazy_static = "1.5.0"
chrono = "0.4.39"
inquire = "0.7.5"
[dev-dependencies]
tempfile = "3.13.0"
alloy-node-bindings = "0.8.3"
[build-dependencies]
tonic-build = "0.12.3"
[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"