-
Notifications
You must be signed in to change notification settings - Fork 41
/
Cargo.toml
44 lines (41 loc) · 1.18 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
[package]
name = "mithril-end-to-end"
version = "0.4.51"
authors = { workspace = true }
edition = { workspace = true }
documentation = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
default-run = "mithril-end-to-end"
[[bin]]
name = "load-aggregator"
test = false
bench = false
[dependencies]
anyhow = "1.0.92"
async-recursion = "1.1.1"
async-trait = "0.1.83"
clap = { version = "4.5.20", features = ["derive"] }
glob = "0.3.1"
hex = "0.4.3"
indicatif = { version = "0.17.8", features = ["tokio"] }
mithril-common = { path = "../../mithril-common", features = ["full"] }
mithril-doc = { path = "../../internal/mithril-doc" }
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = "0.9.34"
slog = { version = "2.7.0", features = [
"max_level_trace",
"release_max_level_trace",
] }
slog-async = "2.8.0"
slog-scope = "4.4.0"
slog-term = "2.9.1"
thiserror = "1.0.67"
tokio = { version = "1.41.0", features = ["full"] }
tokio-util = { version = "0.7.12", features = ["codec"] }
[features]
default = []
allow_skip_signer_certification = []