-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (39 loc) · 1.26 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
[package]
name = "checkpointq"
version = "0.1.0"
authors = ["Dadepo <dadepo@gmail.com>"]
license = "MIT"
description = "Tool for establishing checkpoint quorum for finalized checkpoints across multiple checkpoint providers"
readme = "README.md"
homepage = "https://github.com/dadepo/checkpointq"
repository = "https://github.com/dadepo/checkpointq"
keywords = ["Ethereum", "BeaconChain", "Eth", "Consensus"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0.24", features = ["derive"] }
reqwest = { version = "0.12.4", features = ["json"] }
futures = "0.3.30"
tokio = { version = "1.37.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
colored = "2.1.0"
axum = "0.7.5"
axum-macros = "0.4.1"
thiserror = "1.0.38"
tower-http = { version = "0.5.2", features = ["trace"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"]}
tracing = { version = "0.1.37"}
strum = { version = "0.26.2", features = ["derive"] }
strum_macros = "0.26.2"
[dev-dependencies]
http = "1.1.0"
[profile.release]
panic = 'abort'
[lib]
name = "checkpointq_lib"
path = "src/lib.rs"
[[bin]]
name = "checkpointq"
path = "src/main.rs"