Skip to content

Commit 10e5979

Browse files
committed
chore: upgrade Rust dependencies
1 parent 9ef356d commit 10e5979

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ repository = "https://github.com/input-output-hk/mithril/"
4242
anyhow = "1.0.98"
4343
async-recursion = "1.1.1"
4444
async-trait = "0.1.88"
45-
chrono = { version = "0.4.40", features = ["serde"] }
46-
clap = { version = "4.5.37", features = ["derive", "env"] }
45+
chrono = { version = "0.4.41", features = ["serde"] }
46+
clap = { version = "4.5.39", features = ["derive", "env"] }
4747
config = "0.15.11"
4848
digest = { version = "0.10.7", features = ["alloc"] }
4949
hex = "0.4.3"
5050
mockall = "0.13.1"
51-
rand_chacha = "0.3.1"
52-
rand_core = { version = "0.6.4", features = ["std"] }
51+
rand_chacha = "0.9.0"
52+
rand_core = { version = "0.9.3", features = ["std"] }
5353
rayon = "1.10.0"
54-
reqwest = { version = "0.12.15", default-features = false, features = ["json"] }
54+
reqwest = { version = "0.12.19", default-features = false, features = ["json"] }
5555
semver = "1.0.26"
5656
serde = { version = "1.0.219", features = ["derive", "rc"] }
5757
serde_json = "1.0.140"
@@ -61,6 +61,6 @@ slog-bunyan = "2.5.0"
6161
slog-term = "2.9.1"
6262
strum = { version = "0.27.1", features = ["derive"] }
6363
thiserror = "2.0.12"
64-
tokio = { version = "1.44.2", features = ["rt", "sync", "time"] }
64+
tokio = { version = "1.45.1", features = ["rt", "sync", "time"] }
6565
tracing = "0.1.41"
6666
warp = "0.3.7"

internal/mithril-metric/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ crate-type = ["lib", "cdylib", "staticlib"]
1313

1414
[dependencies]
1515
anyhow = { workspace = true }
16-
axum = "0.8.3"
16+
axum = "0.8.4"
1717
mithril-common = { path = "../../mithril-common" }
1818
paste = "1.0.15"
1919
prometheus = "0.14.0"

mithril-aggregator/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ chrono = { workspace = true }
2222
clap = { workspace = true, features = ["cargo"] }
2323
config = { workspace = true }
2424
flate2 = "1.1.1"
25-
gcloud-kms = { version = "1.2.0", features = ["auth"] }
25+
gcloud-kms = { version = "1.2.1", features = ["auth"] }
2626
gcloud-storage = { version = "1.1.0", features = ["auth"] }
2727
hex = { workspace = true }
2828
mithril-cli-helper = { path = "../internal/mithril-cli-helper" }
@@ -58,7 +58,7 @@ tar = "0.4.44"
5858
thiserror = { workspace = true }
5959
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] }
6060
tokio-util = { version = "0.7.15", features = ["codec"] }
61-
uuid = { version = "1.16.0", features = [
61+
uuid = { version = "1.17.0", features = [
6262
"v4",
6363
"fast-rng",
6464
"macro-diagnostics",
@@ -70,7 +70,7 @@ zstd = { version = "0.13.3", features = ["zstdmt"] }
7070
tikv-jemallocator = { version = "0.6.0", optional = true }
7171

7272
[dev-dependencies]
73-
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
73+
criterion = { version = "0.6.0", features = ["html_reports", "async_tokio"] }
7474
http = "1.3.1"
7575
httpmock = "0.7.0"
7676
mithril-common = { path = "../mithril-common", features = [
@@ -80,7 +80,7 @@ mithril-common = { path = "../mithril-common", features = [
8080
mockall = { workspace = true }
8181
slog-scope = "4.4.0"
8282
slog-term = { workspace = true }
83-
tempfile = "3.19.1"
83+
tempfile = "3.20.0"
8484

8585
[[bench]]
8686
name = "cardano_transactions_import"

mithril-client/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ strum = { workspace = true }
7272
tar = { version = "0.4.44", optional = true }
7373
thiserror = { workspace = true }
7474
tokio = { workspace = true }
75-
uuid = { version = "1.16.0", features = ["v4"] }
75+
uuid = { version = "1.17.0", features = ["v4"] }
7676
zstd = { version = "0.13.3", optional = true }
7777

7878
[target.'cfg(not(target_family = "wasm"))'.dependencies]
@@ -81,9 +81,9 @@ mithril-common = { path = "../mithril-common", version = "=0.5", default-feature
8181
] }
8282

8383
[target.'cfg(target_family = "wasm")'.dependencies]
84-
getrandom = { version = "0.2.15", features = ["js"] }
84+
getrandom = { version = "0.3.3", features = ["js"] }
8585
mithril-common = { path = "../mithril-common", version = "=0.5", default-features = false }
86-
uuid = { version = "1.16.0", features = ["v4", "js"] }
86+
uuid = { version = "1.17.0", features = ["v4", "js"] }
8787

8888
[dev-dependencies]
8989
bon = "3.6.3"
@@ -93,7 +93,7 @@ mithril-common = { path = "../mithril-common", version = "=0.5", default-feature
9393
"test_tools",
9494
] }
9595
mockall = { workspace = true }
96-
sha2 = "0.10.8"
96+
sha2 = "0.10.9"
9797
slog-async = { workspace = true }
9898
slog-term = { workspace = true }
9999
tokio = { workspace = true, features = ["macros"] }

mithril-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ serde_bytes = "0.11.17"
8888
serde_json = { workspace = true }
8989
serde_with = "3.12.0"
9090
serde_yaml = { version = "0.9.34", optional = true }
91-
sha2 = "0.10.8"
91+
sha2 = "0.10.9"
9292
slog = { workspace = true }
9393
strum = { workspace = true }
9494
thiserror = { workspace = true }
@@ -104,7 +104,7 @@ wasm-bindgen = "0.2.100"
104104
mithril-build-script = { path = "../internal/mithril-build-script", version = "=0.2" }
105105

106106
[dev-dependencies]
107-
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
107+
criterion = { version = "0.6.0", features = ["html_reports", "async_tokio"] }
108108
mockall = { workspace = true }
109109
pallas-crypto = "0.32.0"
110110
reqwest = { workspace = true }

mithril-signer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] }
5454
tikv-jemallocator = { version = "0.6.0", optional = true }
5555

5656
[dev-dependencies]
57-
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
57+
criterion = { version = "0.6.0", features = ["html_reports", "async_tokio"] }
5858
http = "1.3.1"
5959
httpmock = "0.7.0"
6060
mithril-common = { path = "../mithril-common" }

mithril-stm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ num-traits = { version = "0.2.19", optional = true }
4545
rug = { version = "1.27.0", optional = true }
4646

4747
[dev-dependencies]
48-
bincode = "1.3.3"
49-
criterion = { version = "0.5.1", features = ["html_reports"] }
48+
bincode = "2.0.1"
49+
criterion = { version = "0.6.0", features = ["html_reports"] }
5050
num-bigint = "0.4.6"
5151
num-rational = "0.4.2"
5252
proptest = "1.6.0"

mithril-test-lab/mithril-aggregator-fake/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ repository = { workspace = true }
1111

1212
[dependencies]
1313
anyhow = { workspace = true }
14-
axum = { version = "0.8.3", features = ["tokio", "http1"] }
14+
axum = { version = "0.8.4", features = ["tokio", "http1"] }
1515
clap = { workspace = true }
1616
futures = "0.3.31"
1717
serde = { workspace = true }
1818
serde_json = { workspace = true }
19-
signal-hook = "0.3.17"
19+
signal-hook = "0.3.18"
2020
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
2121
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
22-
tower-http = { version = "0.6.2", features = ["trace", "cors"] }
22+
tower-http = { version = "0.6.5", features = ["trace", "cors"] }
2323
tracing = { workspace = true }
2424
tracing-subscriber = "0.3.19"
2525

0 commit comments

Comments
 (0)