-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathCargo.toml
40 lines (37 loc) · 1.09 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
[package]
name = "mithril-end-to-end"
version = "0.4.74"
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.95"
async-recursion = "1.1.1"
clap = { version = "4.5.28", features = ["derive"] }
indicatif = { version = "0.17.11", features = ["tokio"] }
mithril-common = { path = "../../mithril-common", features = ["full"] }
mithril-doc = { path = "../../internal/mithril-doc" }
reqwest = { version = "0.12.12", features = ["json"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
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 = "2.0.11"
tokio = { version = "1.43.0", features = ["full"] }
[features]
default = []
allow_skip_signer_certification = []
bundle_tls = ["reqwest/native-tls-vendored"]