Skip to content

Commit b890de0

Browse files
committed
WIP: very naive HTTP implementation to retrieve epoch setting from aggregator
1 parent ec454ba commit b890de0

File tree

8 files changed

+946
-7
lines changed

8 files changed

+946
-7
lines changed

Cargo.lock

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/mithril-network-config/Cargo.toml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,30 @@ license = { workspace = true }
99
repository = { workspace = true }
1010

1111
[dependencies]
12-
mithril-common = { path = "../../mithril-common" }
12+
anyhow = { workspace = true }
13+
async-trait = { workspace = true }
14+
mithril-common = { path = "../../mithril-common" }
15+
reqwest = { workspace = true, features = [
16+
"default",
17+
"stream",
18+
"gzip",
19+
"zstd",
20+
"deflate",
21+
"brotli"
22+
] }
23+
semver = { workspace = true }
24+
serde = { workspace = true }
25+
serde_json = { workspace = true }
26+
slog = { workspace = true, features = [
27+
"max_level_trace",
28+
"release_max_level_debug",
29+
] }
30+
thiserror = { workspace = true }
31+
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] }
32+
33+
34+
[dev-dependencies]
35+
#criterion = { version = "0.7.0", features = ["html_reports", "async_tokio"] }
36+
http = "1.3.1"
37+
httpmock = "0.7.0"
38+
mockall = { workspace = true }

0 commit comments

Comments
 (0)