Skip to content

Commit a04bd81

Browse files
committed
chore: upgrade outdated Rust dependencies
- 'mockall' from '0.12.1' to '0.13.0' - 'openssl' from '0.10.63' to '0.10.66' - 'pallas-*' from '0.28.0' to '0.29.0' - 'tikv-jemallocator' to '0.5.4' to '0.6.0'.
1 parent 414e362 commit a04bd81

File tree

7 files changed

+40
-40
lines changed

7 files changed

+40
-40
lines changed

Cargo.lock

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

internal/mithril-persistence/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ tokio = { version = "1.37.0", features = ["sync"] }
2828

2929
[dev-dependencies]
3030
mithril-common = { path = "../../mithril-common", features = ["test_tools"] }
31-
mockall = "0.12.1"
31+
mockall = "0.13.0"
3232
slog-async = "2.8.0"
3333
slog-scope = "4.4.0"
3434
slog-term = "2.9.0"

mithril-aggregator/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ 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" }
32-
openssl = { version = "0.10.63", features = ["vendored"], optional = true }
32+
openssl = { version = "0.10.66", features = ["vendored"], optional = true }
3333
openssl-probe = { version = "0.1.5", optional = true }
3434
rayon = "1.10.0"
3535
reqwest = { version = "0.12.0", features = ["json"] }
@@ -56,7 +56,7 @@ warp = "0.3.6"
5656
zstd = { version = "0.13.0", features = ["zstdmt"] }
5757

5858
[target.'cfg(not(target_env = "msvc"))'.dependencies]
59-
tikv-jemallocator = { version = "0.5.4", optional = true }
59+
tikv-jemallocator = { version = "0.6.0", optional = true }
6060

6161
[dev-dependencies]
6262
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
@@ -65,7 +65,7 @@ mithril-common = { path = "../mithril-common", features = [
6565
"allow_skip_signer_certification",
6666
"test_tools",
6767
] }
68-
mockall = "0.12.1"
68+
mockall = "0.13.0"
6969
slog-term = "2.9.0"
7070
tempfile = "3.9.0"
7171

mithril-client-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ human_bytes = { version = "0.4.3", features = ["fast"] }
3434
indicatif = { version = "0.17.7", features = ["tokio"] }
3535
mithril-client = { path = "../mithril-client", features = ["fs", "unstable"] }
3636
mithril-doc = { path = "../internal/mithril-doc" }
37-
openssl = { version = "0.10.63", features = ["vendored"], optional = true }
37+
openssl = { version = "0.10.66", features = ["vendored"], optional = true }
3838
openssl-probe = { version = "0.1.5", optional = true }
3939
serde = { version = "1.0.196", features = ["derive"] }
4040
serde_json = "1.0.113"

mithril-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ mithril-common = { path = "../mithril-common", version = "=0.4", features = [
7272
"random",
7373
"test_tools",
7474
] }
75-
mockall = "0.12.1"
75+
mockall = "0.13.0"
7676
slog-async = "2.8.0"
7777
slog-scope = "4.4.0"
7878
slog-term = "2.9.0"

mithril-common/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ kes-summed-ed25519 = { version = "0.2.1", features = [
4848
"sk_clone_enabled",
4949
] }
5050
nom = "7.1.3"
51-
pallas-addresses = { version = "0.28.0", optional = true }
52-
pallas-codec = { version = "0.28.0", optional = true }
53-
pallas-hardano = { version = "0.28.0", optional = true }
54-
pallas-network = { version = "0.28.0", optional = true }
55-
pallas-primitives = { version = "0.28.0", optional = true }
56-
pallas-traverse = { version = "0.28.0", optional = true }
51+
pallas-addresses = { version = "0.29.0", optional = true }
52+
pallas-codec = { version = "0.29.0", optional = true }
53+
pallas-hardano = { version = "0.29.0", optional = true }
54+
pallas-network = { version = "0.29.0", optional = true }
55+
pallas-primitives = { version = "0.29.0", optional = true }
56+
pallas-traverse = { version = "0.29.0", optional = true }
5757
rand_chacha = "0.3.1"
5858
rand_core = "0.6.4"
5959
rayon = "1.8.1"
@@ -92,8 +92,8 @@ wasm-bindgen = "0.2.90"
9292

9393
[dev-dependencies]
9494
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
95-
mockall = "0.12.1"
96-
pallas-crypto = "0.28.0"
95+
mockall = "0.13.0"
96+
pallas-crypto = "0.29.0"
9797
rand_core = { version = "0.6.4", features = ["getrandom"] }
9898
reqwest = { version = "0.12.0", features = ["json"] }
9999
slog-async = "2.8.0"

mithril-signer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ hex = "0.4.3"
1919
mithril-common = { path = "../mithril-common", features = ["full"] }
2020
mithril-doc = { path = "../internal/mithril-doc" }
2121
mithril-persistence = { path = "../internal/mithril-persistence" }
22-
openssl = { version = "0.10.63", features = ["vendored"], optional = true }
22+
openssl = { version = "0.10.66", features = ["vendored"], optional = true }
2323
openssl-probe = { version = "0.1.5", optional = true }
2424
prometheus = "0.13.3"
2525
rand_chacha = "0.3.1"
@@ -39,12 +39,12 @@ thiserror = "1.0.56"
3939
tokio = { version = "1.37.0", features = ["full"] }
4040

4141
[target.'cfg(not(target_env = "msvc"))'.dependencies]
42-
tikv-jemallocator = { version = "0.5.4", optional = true }
42+
tikv-jemallocator = { version = "0.6.0", optional = true }
4343

4444
[dev-dependencies]
4545
httpmock = "0.7.0"
4646
mithril-common = { path = "../mithril-common" }
47-
mockall = "0.12.1"
47+
mockall = "0.13.0"
4848
prometheus-parse = "0.2.5"
4949
slog-term = "2.9.0"
5050

0 commit comments

Comments
 (0)