Skip to content

Commit 6493d20

Browse files
committed
chore: upgrade Rust dependencies
1 parent 13d37eb commit 6493d20

File tree

12 files changed

+37
-37
lines changed

12 files changed

+37
-37
lines changed

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -47,28 +47,28 @@ license = "Apache-2.0"
4747
repository = "https://github.com/input-output-hk/mithril/"
4848

4949
[workspace.dependencies]
50-
anyhow = "1.0.98"
50+
anyhow = "1.0.99"
5151
async-recursion = "1.1.1"
52-
async-trait = "0.1.88"
52+
async-trait = "0.1.89"
5353
chrono = { version = "0.4.41", features = ["serde"] }
54-
clap = { version = "4.5.41", features = ["derive", "env"] }
55-
config = "0.15.13"
54+
clap = { version = "4.5.47", features = ["derive", "env"] }
55+
config = "0.15.15"
5656
digest = { version = "0.10.7", features = ["alloc"] }
5757
hex = "0.4.3"
5858
mockall = "0.13.1"
59-
rand_chacha = "0.3.1"
60-
rand_core = { version = "0.6.4", features = ["std"] }
61-
rayon = "1.10.0"
62-
reqwest = { version = "0.12.22", default-features = false, features = ["json"] }
59+
rand_chacha = "0.9.0"
60+
rand_core = { version = "0.9.3", features = ["std"] }
61+
rayon = "1.11.0"
62+
reqwest = { version = "0.12.23", default-features = false, features = ["json"] }
6363
semver = "1.0.26"
6464
serde = { version = "1.0.219", features = ["derive", "rc"] }
65-
serde_json = "1.0.140"
65+
serde_json = "1.0.143"
6666
slog = "2.7.0"
6767
slog-async = "2.8.0"
6868
slog-bunyan = "2.5.0"
69-
slog-term = "2.9.1"
70-
strum = { version = "0.27.1", features = ["derive"] }
71-
thiserror = "2.0.12"
72-
tokio = { version = "1.46.1", features = ["rt", "sync", "time"] }
69+
slog-term = "2.9.2"
70+
strum = { version = "0.27.2", features = ["derive"] }
71+
thiserror = "2.0.16"
72+
tokio = { version = "1.47.1", features = ["rt", "sync", "time"] }
7373
tracing = "0.1.41"
74-
warp = "0.3.7"
74+
warp = "0.4.2"

internal/cardano-node/mithril-cardano-node-internal-database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ tokio = { workspace = true, features = ["fs", "io-util"] }
2828
walkdir = "2.5.0"
2929

3030
[dev-dependencies]
31-
criterion = { version = "0.6.0", features = ["html_reports", "async_tokio"] }
31+
criterion = { version = "0.7.0", features = ["html_reports", "async_tokio"] }
3232
mockall = { workspace = true }
3333
slog-async = { workspace = true }
3434
slog-term = { workspace = true }

internal/mithril-doc-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ default = []
1616

1717
[dependencies]
1818
quote = "1.0.40"
19-
syn = { version = "2.0.104", features = ["full"] }
19+
syn = { version = "2.0.106", features = ["full"] }

internal/mithril-doc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ mithril-doc-derive = { path = "../mithril-doc-derive" }
1919

2020
[dev-dependencies]
2121
mithril-cli-helper = { path = "../mithril-cli-helper" }
22-
regex = "1.11.1"
22+
regex = "1.11.2"

internal/tests/mithril-api-spec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license.workspace = true
99
repository.workspace = true
1010

1111
[dependencies]
12-
jsonschema = { version = "0.30.0" }
12+
jsonschema = { version = "0.33.0" }
1313
reqwest = { workspace = true }
1414
serde = { workspace = true }
1515
serde_json = { workspace = true }

mithril-aggregator/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ mithril-signed-entity-lock = { path = "../internal/signed-entity/mithril-signed-
4040
mithril-signed-entity-preloader = { path = "../internal/signed-entity/mithril-signed-entity-preloader" }
4141
mithril-ticker = { path = "../internal/mithril-ticker" }
4242
paste = "1.0.15"
43-
percent-encoding = "2.3.1"
43+
percent-encoding = "2.3.2"
4444
rayon = { workspace = true }
45-
regex = "1.11.1"
45+
regex = "1.11.2"
4646
reqwest = { workspace = true, features = [
4747
"default",
4848
"gzip",
@@ -63,8 +63,8 @@ sqlite = { version = "0.37.0", features = ["bundled"] }
6363
tar = "0.4.44"
6464
thiserror = { workspace = true }
6565
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] }
66-
tokio-util = { version = "0.7.15", features = ["codec"] }
67-
uuid = { version = "1.17.0", features = [
66+
tokio-util = { version = "0.7.16", features = ["codec"] }
67+
uuid = { version = "1.18.1", features = [
6868
"v4",
6969
"fast-rng",
7070
"macro-diagnostics",
@@ -77,8 +77,8 @@ tikv-jemallocator = { version = "0.6.0", optional = true }
7777

7878
[dev-dependencies]
7979
axum = { version = "0.8.4", features = ["json"] }
80-
axum-test = "17.3.0"
81-
criterion = { version = "0.6.0", features = ["html_reports", "async_tokio"] }
80+
axum-test = "18.0.2"
81+
criterion = { version = "0.7.0", features = ["html_reports", "async_tokio"] }
8282
http = "1.3.1"
8383
httpmock = "0.7.0"
8484
mithril-api-spec = { path = "../internal/tests/mithril-api-spec" }
@@ -87,7 +87,7 @@ mithril-test-http-server = { path = "../internal/tests/mithril-test-http-server"
8787
mockall = { workspace = true }
8888
slog-scope = "4.4.0"
8989
slog-term = { workspace = true }
90-
tempfile = "3.20.0"
90+
tempfile = "3.21.0"
9191

9292
[[bench]]
9393
name = "cardano_transactions_import"

mithril-client-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ slog-term = { workspace = true }
5858
tar = "0.4.44"
5959
thiserror = { workspace = true }
6060
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
61-
zip = "4.3.0"
61+
zip = "4.6.1"
6262

6363
[dev-dependencies]
6464
httpmock = "0.7.0"

mithril-client/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,20 @@ strum = { workspace = true }
7373
tar = { version = "0.4.44", optional = true }
7474
thiserror = { workspace = true }
7575
tokio = { workspace = true }
76-
uuid = { version = "1.17.0", features = ["v4"] }
76+
uuid = { version = "1.18.1", features = ["v4"] }
7777
zstd = { version = "0.13.3", optional = true }
7878

7979
[target.'cfg(not(target_family = "wasm"))'.dependencies]
8080
mithril-cardano-node-internal-database = { path = "../internal/cardano-node/mithril-cardano-node-internal-database", version = "=0.1" }
8181

8282
[target.'cfg(target_family = "wasm")'.dependencies]
83-
getrandom = { version = "0.2.15", features = ["js"] }
84-
uuid = { version = "1.17.0", features = ["v4", "js"] }
83+
getrandom = { version = "0.3.3", features = ["js"] }
84+
uuid = { version = "1.18.1", features = ["v4", "js"] }
8585

8686
[dev-dependencies]
8787
axum = { version = "0.8.4", features = ["json"] }
88-
axum-test = "17.3.0"
89-
bon = "3.6.4"
88+
axum-test = "18.0.2"
89+
bon = "3.7.2"
9090
hex = { workspace = true }
9191
http = "1.3.1"
9292
httpmock = "0.7.0"

mithril-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ wasm-bindgen = "0.2.100"
7575
mithril-build-script = { path = "../internal/mithril-build-script", version = "=0.2" }
7676

7777
[dev-dependencies]
78-
criterion = { version = "0.6.0", features = ["html_reports", "async_tokio"] }
78+
criterion = { version = "0.7.0", features = ["html_reports", "async_tokio"] }
7979
mockall = { workspace = true }
8080
slog-async = { workspace = true }
8181
slog-term = { workspace = true }

mithril-signer/Cargo.toml

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

6363
[dev-dependencies]
64-
criterion = { version = "0.6.0", features = ["html_reports", "async_tokio"] }
64+
criterion = { version = "0.7.0", features = ["html_reports", "async_tokio"] }
6565
http = "1.3.1"
6666
httpmock = "0.7.0"
6767
mockall = { workspace = true }

0 commit comments

Comments
 (0)