Skip to content

Commit a791f98

Browse files
committed
chore: upgrade Rust dependencies
1 parent ff0944f commit a791f98

File tree

13 files changed

+29
-29
lines changed

13 files changed

+29
-29
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ anyhow = "1.0.98"
5050
async-recursion = "1.1.1"
5151
async-trait = "0.1.88"
5252
chrono = { version = "0.4.41", features = ["serde"] }
53-
clap = { version = "4.5.39", features = ["derive", "env"] }
54-
config = "0.15.11"
53+
clap = { version = "4.5.41", features = ["derive", "env"] }
54+
config = "0.15.13"
5555
digest = { version = "0.10.7", features = ["alloc"] }
5656
hex = "0.4.3"
5757
mockall = "0.13.1"
58-
rand_chacha = "0.3.1"
59-
rand_core = { version = "0.6.4", features = ["std"] }
58+
rand_chacha = "0.9.0"
59+
rand_core = { version = "0.9.3", features = ["std"] }
6060
rayon = "1.10.0"
61-
reqwest = { version = "0.12.19", default-features = false, features = ["json"] }
61+
reqwest = { version = "0.12.22", default-features = false, features = ["json"] }
6262
semver = "1.0.26"
6363
serde = { version = "1.0.219", features = ["derive", "rc"] }
6464
serde_json = "1.0.140"
@@ -68,6 +68,6 @@ slog-bunyan = "2.5.0"
6868
slog-term = "2.9.1"
6969
strum = { version = "0.27.1", features = ["derive"] }
7070
thiserror = "2.0.12"
71-
tokio = { version = "1.45.1", features = ["rt", "sync", "time"] }
71+
tokio = { version = "1.46.1", features = ["rt", "sync", "time"] }
7272
tracing = "0.1.41"
7373
warp = "0.3.7"

examples/client-cardano-database-v2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ anyhow = { workspace = true }
1414
async-trait = { workspace = true }
1515
clap = { workspace = true }
1616
futures = "0.3.31"
17-
indicatif = "0.17.11"
17+
indicatif = "0.18.0"
1818
mithril-client = { path = "../../mithril-client", features = ["fs"] }
1919
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }

examples/client-cardano-database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ anyhow = { workspace = true }
1414
async-trait = { workspace = true }
1515
clap = { workspace = true }
1616
futures = "0.3.31"
17-
indicatif = "0.17.11"
17+
indicatif = "0.18.0"
1818
mithril-client = { path = "../../mithril-client", features = ["fs"] }
1919
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ async-trait = { workspace = true }
1717
hex = { workspace = true }
1818
mithril-common = { path = "../../../mithril-common" }
1919
nom = "8.0.0"
20-
pallas-addresses = { version = "0.32.0" }
21-
pallas-codec = { version = "0.32.0" }
22-
pallas-network = { version = "0.32.0" }
23-
pallas-primitives = { version = "0.32.0" }
24-
pallas-traverse = { version = "0.32.0" }
20+
pallas-addresses = { version = "0.33.0" }
21+
pallas-codec = { version = "0.33.0" }
22+
pallas-network = { version = "0.33.0" }
23+
pallas-primitives = { version = "0.33.0" }
24+
pallas-traverse = { version = "0.33.0" }
2525
rand_core = { workspace = true }
2626
serde = { workspace = true }
2727
serde_json = { workspace = true }
@@ -37,7 +37,7 @@ kes-summed-ed25519 = { version = "0.2.1", features = [
3737
] }
3838
mithril-common = { path = "../../../mithril-common", features = ["test_tools"] }
3939
mockall = { workspace = true }
40-
pallas-crypto = "0.32.0"
40+
pallas-crypto = "0.33.0"
4141
slog-async = { workspace = true }
4242
slog-term = { workspace = true }
4343
tokio = { workspace = true, features = ["macros"] }

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.101", features = ["full"] }
19+
syn = { version = "2.0.104", features = ["full"] }

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async-trait = { workspace = true }
2222
chrono = { workspace = true }
2323
clap = { workspace = true, features = ["cargo"] }
2424
config = { workspace = true }
25-
flate2 = "1.1.1"
25+
flate2 = "1.1.2"
2626
gcloud-kms = { version = "1.2.1", features = ["auth"] }
2727
gcloud-storage = { version = "1.1.0", features = ["auth"] }
2828
hex = { workspace = true }

mithril-client-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ chrono = { workspace = true }
3131
clap = { workspace = true }
3232
cli-table = "0.5.0"
3333
config = { workspace = true }
34-
flate2 = "1.1.1"
34+
flate2 = "1.1.2"
3535
fs2 = "0.4.3"
3636
futures = "0.3.31"
3737
human_bytes = { version = "0.4.3", features = ["fast"] }
38-
indicatif = { version = "0.17.11", features = ["tokio"] }
38+
indicatif = { version = "0.18.0", features = ["tokio"] }
3939
mithril-cli-helper = { path = "../internal/mithril-cli-helper" }
4040
mithril-client = { path = "../mithril-client", features = ["fs", "unstable"] }
4141
mithril-doc = { path = "../internal/mithril-doc" }
@@ -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.0.0"
61+
zip = "4.3.0"
6262

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

mithril-client/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ anyhow = { workspace = true }
5555
async-recursion = { workspace = true }
5656
async-trait = { workspace = true }
5757
chrono = { workspace = true }
58-
flate2 = { version = "1.1.1", optional = true }
58+
flate2 = { version = "1.1.2", optional = true }
5959
flume = { version = "0.11.1", optional = true }
6060
futures = "0.3.31"
6161
mithril-common = { path = "../mithril-common", version = ">=0.5", default-features = false }
@@ -80,13 +80,13 @@ zstd = { version = "0.13.3", optional = true }
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"] }
83+
getrandom = { version = "0.3.3", features = ["js"] }
8484
uuid = { version = "1.17.0", features = ["v4", "js"] }
8585

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

mithril-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ chrono = { workspace = true }
4848
ciborium = "0.2.2"
4949
ckb-merkle-mountain-range = "0.6.1"
5050
digest = { workspace = true }
51-
ed25519-dalek = { version = "2.1.1", features = ["rand_core", "serde"] }
51+
ed25519-dalek = { version = "2.2.0", features = ["rand_core", "serde"] }
5252
fixed = "1.29.0"
5353
hex = { workspace = true }
5454
kes-summed-ed25519 = { version = "0.2.1", features = [
@@ -64,7 +64,7 @@ semver = { workspace = true }
6464
serde = { workspace = true }
6565
serde_bytes = "0.11.17"
6666
serde_json = { workspace = true }
67-
serde_with = "3.12.0"
67+
serde_with = "3.14.0"
6868
sha2 = "0.10.9"
6969
slog = { workspace = true }
7070
strum = { workspace = true }

mithril-relay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bundle_tls = ["reqwest/native-tls-vendored"]
1717
anyhow = { workspace = true }
1818
clap = { workspace = true }
1919
config = { workspace = true }
20-
libp2p = { version = "0.55.0", features = [
20+
libp2p = { version = "0.56.0", features = [
2121
"tokio",
2222
"gossipsub",
2323
"dns",

0 commit comments

Comments
 (0)