Skip to content

Commit 45a8070

Browse files
committed
chore: upgrade Rust dependencies
1 parent 9700e65 commit 45a8070

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,28 +39,28 @@ license = "Apache-2.0"
3939
repository = "https://github.com/input-output-hk/mithril/"
4040

4141
[workspace.dependencies]
42-
anyhow = "1.0.97"
42+
anyhow = "1.0.98"
4343
async-recursion = "1.1.1"
4444
async-trait = "0.1.88"
4545
chrono = { version = "0.4.40", features = ["serde"] }
46-
clap = { version = "4.5.32", features = ["derive", "env"] }
47-
config = "0.15.10"
46+
clap = { version = "4.5.37", features = ["derive", "env"] }
47+
config = "0.15.11"
4848
digest = { version = "0.10.7", features = ["alloc"] }
4949
hex = "0.4.3"
5050
mockall = "0.13.1"
5151
rayon = "1.10.0"
52-
rand_core = { version = "0.6.4", features = ["std"] }
53-
rand_chacha = "0.3.1"
52+
rand_core = { version = "0.9.3", features = ["std"] }
53+
rand_chacha = "0.9.0"
5454
reqwest = { version = "0.12.15", default-features = false, features = ["json"] }
5555
semver = "1.0.26"
56-
serde = { version = "1.0.218", features = ["derive", "rc"] }
56+
serde = { version = "1.0.219", features = ["derive", "rc"] }
5757
serde_json = "1.0.140"
5858
slog = "2.7.0"
5959
slog-async = "2.8.0"
6060
slog-bunyan = "2.5.0"
6161
slog-term = "2.9.1"
6262
strum = { version = "0.27.1", features = ["derive"] }
63-
thiserror = "2.0.11"
63+
thiserror = "2.0.12"
6464
tracing = "0.1.41"
65-
tokio = { version = "1.44.1", features = ["rt", "sync", "time"] }
65+
tokio = { version = "1.44.2", features = ["rt", "sync", "time"] }
6666
warp = "0.3.7"

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.40"
16-
syn = { version = "2.0.100", features = ["full"] }
16+
syn = { version = "2.0.101", features = ["full"] }
1717

1818
[features]
1919
default = []

internal/mithril-metric/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ crate-type = ["lib", "cdylib", "staticlib"]
1313

1414
[dependencies]
1515
anyhow = { workspace = true }
16-
axum = "0.8.1"
16+
axum = "0.8.3"
1717
mithril-common = { path = "../../mithril-common" }
1818
paste = "1.0.15"
19-
prometheus = "0.13.4"
19+
prometheus = "0.14.0"
2020
reqwest = { workspace = true, features = ["default", "stream"] }
2121
slog = { workspace = true }
2222
tokio = { workspace = true }

internal/mithril-persistence/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ semver = { workspace = true }
2121
serde = { workspace = true }
2222
serde_json = { workspace = true }
2323
slog = { workspace = true }
24-
sqlite = { version = "0.36.2", features = ["bundled"] }
24+
sqlite = { version = "0.37.0", features = ["bundled"] }
2525
thiserror = { workspace = true }
2626
tokio = { workspace = true }
2727

mithril-aggregator/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ chrono = { workspace = true }
2424
clap = { workspace = true, features = ["cargo"] }
2525
cloud-storage = "0.11.1"
2626
config = { workspace = true }
27-
flate2 = "1.1.0"
27+
flate2 = "1.1.1"
2828
gcloud-kms = { version = "1.2.0", features = ["auth"] }
2929
hex = { workspace = true }
3030
mithril-cli-helper = { path = "../internal/mithril-cli-helper" }
@@ -54,11 +54,11 @@ slog = { workspace = true, features = [
5454
] }
5555
slog-async = { workspace = true }
5656
slog-bunyan = { workspace = true }
57-
sqlite = { version = "0.36.2", features = ["bundled"] }
57+
sqlite = { version = "0.37.0", features = ["bundled"] }
5858
tar = "0.4.44"
5959
thiserror = { workspace = true }
6060
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] }
61-
tokio-util = { version = "0.7.14", features = ["codec"] }
61+
tokio-util = { version = "0.7.15", features = ["codec"] }
6262
uuid = { version = "1.16.0", features = [
6363
"v4",
6464
"fast-rng",

mithril-client/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ anyhow = { workspace = true }
3333
async-recursion = { workspace = true }
3434
async-trait = { workspace = true }
3535
chrono = { workspace = true }
36-
flate2 = { version = "1.1.0", optional = true }
36+
flate2 = { version = "1.1.1", optional = true }
3737
flume = { version = "0.11.1", optional = true }
3838
futures = "0.3.31"
3939
reqwest = { workspace = true, default-features = false, features = [
@@ -59,12 +59,12 @@ mithril-common = { path = "../mithril-common", version = "=0.5", default-feature
5959
] }
6060

6161
[target.'cfg(target_family = "wasm")'.dependencies]
62-
getrandom = { version = "0.2.15", features = ["js"] }
62+
getrandom = { version = "0.3.2", features = ["js"] }
6363
mithril-common = { path = "../mithril-common", version = "=0.5", default-features = false }
6464
uuid = { version = "1.16.0", features = ["v4", "js"] }
6565

6666
[dev-dependencies]
67-
bon = "3.5.1"
67+
bon = "3.6.3"
6868
hex = { workspace = true }
6969
httpmock = "0.7.0"
7070
mithril-common = { path = "../mithril-common", version = "=0.5", default-features = false, features = [

mithril-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ed25519-dalek = { version = "2.1.1", features = ["rand_core", "serde"] }
4242
fixed = "1.29.0"
4343
glob = { version = "0.3.2", optional = true }
4444
hex = { workspace = true }
45-
jsonschema = { version = "0.29.0", optional = true }
45+
jsonschema = { version = "0.30.0", optional = true }
4646
kes-summed-ed25519 = { version = "0.2.1", features = [
4747
"serde_enabled",
4848
"sk_clone_enabled",

mithril-signer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ slog = { workspace = true, features = [
4444
] }
4545
slog-async = { workspace = true }
4646
slog-bunyan = { workspace = true }
47-
sqlite = { version = "0.36.2", features = ["bundled"] }
47+
sqlite = { version = "0.37.0", features = ["bundled"] }
4848
thiserror = { workspace = true }
4949
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] }
5050

mithril-stm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ num-rational = { version = "0.4.2" }
3737
num-traits = { version = "0.2.19" }
3838

3939
[dev-dependencies]
40-
bincode = "1.3.3"
40+
bincode = "2.0.1"
4141
criterion = { version = "0.5.1", features = ["html_reports"] }
4242
num-bigint = "0.4.6"
4343
num-rational = "0.4.2"
4444
proptest = "1.6.0"
45-
rand = "0.9.0"
45+
rand = "0.9.1"
4646
rand_chacha = { workspace = true }
4747

4848
[[bench]]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = { workspace = true }
1111

1212
[dependencies]
1313
anyhow = { workspace = true }
14-
axum = { version = "0.8.1", features = ["tokio", "http1"] }
14+
axum = { version = "0.8.3", features = ["tokio", "http1"] }
1515
clap = { workspace = true }
1616
futures = "0.3.31"
1717
serde = { workspace = true }

0 commit comments

Comments
 (0)