Skip to content

Commit e2a8f79

Browse files
committed
chore: update Rust dependencies
1 parent 0dbfeab commit e2a8f79

File tree

19 files changed

+682
-385
lines changed

19 files changed

+682
-385
lines changed

Cargo.lock

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

demo/protocol-demo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ repository = { workspace = true }
1111
[dependencies]
1212
base64 = "0.22.1"
1313
blake2 = "0.10.6"
14-
clap = { version = "4.5.17", features = ["derive"] }
14+
clap = { version = "4.5.20", features = ["derive"] }
1515
hex = "0.4.3"
1616
log = "0.4.22"
1717
mithril-common = { path = "../../mithril-common", features = ["fs"] }
1818
mithril-doc = { path = "../../internal/mithril-doc" }
1919
rand_chacha = "0.3.1"
2020
rand_core = "0.6.4"
21-
serde = { version = "1.0.209", features = ["derive"] }
21+
serde = { version = "1.0.210", features = ["derive"] }
2222
serde_json = "1.0.128"
2323

2424
[target.'cfg(not(windows))'.dependencies]

examples/client-cardano-stake-distribution/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ license = "Apache-2.0"
1010
repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
13-
anyhow = "1.0.86"
14-
clap = { version = "4.5.17", features = ["derive", "env"] }
13+
anyhow = "1.0.89"
14+
clap = { version = "4.5.20", features = ["derive", "env"] }
1515
mithril-client = { path = "../../mithril-client", features = ["unstable"] }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"

examples/client-cardano-transaction/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ license = "Apache-2.0"
1010
repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
13-
anyhow = "1.0.86"
14-
clap = { version = "4.5.17", features = ["derive", "env"] }
13+
anyhow = "1.0.89"
14+
clap = { version = "4.5.20", features = ["derive", "env"] }
1515
mithril-client = { path = "../../mithril-client" }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"

examples/client-mithril-stake-distribution/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ license = "Apache-2.0"
1010
repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
13-
anyhow = "1.0.86"
14-
clap = { version = "4.5.17", features = ["derive", "env"] }
13+
anyhow = "1.0.89"
14+
clap = { version = "4.5.20", features = ["derive", "env"] }
1515
mithril-client = { path = "../../mithril-client" }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"

examples/client-snapshot/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ license = "Apache-2.0"
1010
repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
13-
anyhow = "1.0.86"
14-
async-trait = "0.1.82"
15-
clap = { version = "4.5.17", features = ["derive", "env"] }
16-
futures = "0.3.30"
13+
anyhow = "1.0.89"
14+
async-trait = "0.1.83"
15+
clap = { version = "4.5.20", features = ["derive", "env"] }
16+
futures = "0.3.31"
1717
indicatif = "0.17.8"
1818
mithril-client = { path = "../../mithril-client", features = ["fs"] }
1919
tokio = { version = "1.40.0", features = ["full"] }

internal/mithril-doc-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ proc-macro = true
1313

1414
[dependencies]
1515
quote = "1.0.37"
16-
syn = { version = "2.0.77", features = ["full"] }
16+
syn = { version = "2.0.79", features = ["full"] }
1717

1818
[features]
1919
default = []

internal/mithril-doc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ repository = { workspace = true }
1010
include = ["**/*.rs", "Cargo.toml", "README.md", ".gitignore"]
1111

1212
[dependencies]
13-
clap = { version = "4.5.17", features = ["derive", "env"] }
13+
clap = { version = "4.5.20", features = ["derive", "env"] }
1414
config = "0.14.0"
1515
mithril-doc-derive = { path = "../mithril-doc-derive" }
1616

1717
[dev-dependencies]
18-
regex = "1.10.6"
18+
regex = "1.11.0"
1919

2020
[features]
2121
default = []

internal/mithril-persistence/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ repository = { workspace = true }
1212
crate-type = ["lib", "cdylib", "staticlib"]
1313

1414
[dependencies]
15-
anyhow = "1.0.86"
16-
async-trait = "0.1.82"
15+
anyhow = "1.0.89"
16+
async-trait = "0.1.83"
1717
chrono = { version = "0.4.38", features = ["serde"] }
1818
hex = "0.4.3"
1919
mithril-common = { path = "../../mithril-common", features = ["fs"] }
2020
semver = "1.0.23"
21-
serde = { version = "1.0.209", features = ["derive"] }
21+
serde = { version = "1.0.210", features = ["derive"] }
2222
serde_json = "1.0.128"
2323
sha2 = "0.10.8"
2424
slog = "2.7.0"
2525
sqlite = { version = "0.36.1", features = ["bundled"] }
26-
thiserror = "1.0.63"
26+
thiserror = "1.0.64"
2727
tokio = { version = "1.40.0", features = ["sync"] }
2828

2929
[dev-dependencies]

mithril-aggregator/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ name = "cardano_transactions_get"
1818
harness = false
1919

2020
[dependencies]
21-
anyhow = "1.0.86"
22-
async-trait = "0.1.82"
21+
anyhow = "1.0.89"
22+
async-trait = "0.1.83"
2323
chrono = { version = "0.4.38", features = ["serde"] }
24-
clap = { version = "4.5.17", features = ["derive", "env", "cargo"] }
24+
clap = { version = "4.5.20", features = ["derive", "env", "cargo"] }
2525
cloud-storage = "0.11.1"
2626
config = "0.14.0"
27-
flate2 = "1.0.33"
27+
flate2 = "1.0.34"
2828
hex = "0.4.3"
2929
mithril-common = { path = "../mithril-common", features = ["full"] }
3030
mithril-doc = { path = "../internal/mithril-doc" }
3131
mithril-persistence = { path = "../internal/mithril-persistence" }
3232
openssl = { version = "0.10.66", features = ["vendored"], optional = true }
3333
openssl-probe = { version = "0.1.5", optional = true }
3434
rayon = "1.10.0"
35-
reqwest = { version = "0.12.7", features = ["json"] }
35+
reqwest = { version = "0.12.8", features = ["json"] }
3636
semver = "1.0.23"
37-
serde = { version = "1.0.209", features = ["derive"] }
37+
serde = { version = "1.0.210", features = ["derive"] }
3838
serde_json = "1.0.128"
3939
serde_yaml = "0.9.34"
4040
sha2 = "0.10.8"
@@ -45,8 +45,8 @@ slog = { version = "2.7.0", features = [
4545
slog-async = "2.8.0"
4646
slog-bunyan = "2.5.0"
4747
sqlite = { version = "0.36.1", features = ["bundled"] }
48-
tar = "0.4.41"
49-
thiserror = "1.0.63"
48+
tar = "0.4.42"
49+
thiserror = "1.0.64"
5050
tokio = { version = "1.40.0", features = ["full"] }
5151
tokio-util = { version = "0.7.12", features = ["codec"] }
5252
typetag = "0.2.18"
@@ -71,7 +71,7 @@ mithril-common = { path = "../mithril-common", features = [
7171
mockall = "0.13.0"
7272
slog-scope = "4.4.0"
7373
slog-term = "2.9.1"
74-
tempfile = "3.12.0"
74+
tempfile = "3.13.0"
7575

7676
[features]
7777
default = ["jemallocator"]

0 commit comments

Comments
 (0)