-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (46 loc) · 986 Bytes
/
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
[package]
name = "dato"
version = "0.1.0"
edition = "2021"
default-run = "validator"
[dependencies]
# async
tokio = { version = "1.39.2", features = ["full"] }
tokio-stream = "0.1.15"
async-trait = "0.1.81"
futures = "0.3"
axum = "0.7.5"
# serialization
clap = { version = "4.5.15", features = ["derive"] }
serde_json = "1"
serde = "1"
# types
bytes = "1.7.1"
hex = "0.4.3"
hashbrown = "0.14.5"
hashmore = { git = "https://github.com/merklefruit/hashmore" }
# crypto
blst = { version = "0.3.12", features = ["serde"] }
# networking
msg = { git = "https://github.com/chainbound/msg-rs" }
# ethereum
alloy = { version = "0.2", features = ["full"] }
# telemetry
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
# misc
thiserror = "1"
eyre = "0.6.12"
url = "2.5.2"
reqwest = "0.12.5"
reqwest-eventsource = "0.6"
rand = "0.8.5"
[[bin]]
name = "client"
path = "bin/client.rs"
[[bin]]
name = "validator"
path = "bin/validator.rs"
[[bin]]
name = "gen_keys"
path = "bin/gen_keys.rs"