Skip to content

Commit f03f887

Browse files
authored
Merge pull request #2518 from input-output-hk/dlachaume/2492/add-client-cli-command-for-utxo-hd-ledger-state-snapshot-conversion
Feat: add `mithril-client` CLI command for UTxO-HD ledger state snapshot conversion
2 parents 29be6f6 + 5b39c59 commit f03f887

File tree

22 files changed

+2257
-20
lines changed

22 files changed

+2257
-20
lines changed

Cargo.lock

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

mithril-client-cli/Cargo.toml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-client-cli"
3-
version = "0.12.6"
3+
version = "0.12.7"
44
description = "A Mithril Client"
55
authors = { workspace = true }
66
edition = { workspace = true }
@@ -31,13 +31,21 @@ chrono = { workspace = true }
3131
clap = { workspace = true }
3232
cli-table = "0.5.0"
3333
config = { workspace = true }
34+
flate2 = "1.1.1"
3435
fs2 = "0.4.3"
3536
futures = "0.3.31"
3637
human_bytes = { version = "0.4.3", features = ["fast"] }
3738
indicatif = { version = "0.17.11", features = ["tokio"] }
3839
mithril-cli-helper = { path = "../internal/mithril-cli-helper" }
3940
mithril-client = { path = "../mithril-client", features = ["fs", "unstable"] }
4041
mithril-doc = { path = "../internal/mithril-doc" }
42+
reqwest = { workspace = true, features = [
43+
"default",
44+
"gzip",
45+
"zstd",
46+
"deflate",
47+
"brotli"
48+
] }
4149
serde = { workspace = true }
4250
serde_json = { workspace = true }
4351
slog = { workspace = true, features = [
@@ -47,8 +55,12 @@ slog = { workspace = true, features = [
4755
slog-async = { workspace = true }
4856
slog-bunyan = { workspace = true }
4957
slog-term = { workspace = true }
58+
tar = "0.4.44"
5059
thiserror = { workspace = true }
5160
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
61+
zip = "4.0.0"
5262

5363
[dev-dependencies]
64+
httpmock = "0.7.0"
5465
mithril-common = { path = "../mithril-common", features = ["test_tools"] }
66+
mockall = { workspace = true }

0 commit comments

Comments
 (0)