Skip to content

Commit 10c1bf0

Browse files
committed
chore: upgrade Rust dependencies
1 parent 674cfc0 commit 10c1bf0

File tree

21 files changed

+323
-249
lines changed

21 files changed

+323
-249
lines changed

Cargo.lock

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

demo/protocol-demo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ mithril-common = { path = "../../mithril-common", features = ["fs"] }
1818
mithril-doc = { path = "../../internal/mithril-doc" }
1919
rand_chacha = "0.3.1"
2020
rand_core = "0.6.4"
21-
serde = { version = "1.0.210", features = ["derive"] }
22-
serde_json = "1.0.128"
21+
serde = { version = "1.0.214", features = ["derive"] }
22+
serde_json = "1.0.132"
2323

2424
[target.'cfg(not(windows))'.dependencies]
2525
# non-windows: use default rug backend

examples/client-cardano-stake-distribution/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ license = "Apache-2.0"
1010
repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
13-
anyhow = "1.0.89"
13+
anyhow = "1.0.92"
1414
clap = { version = "4.5.20", features = ["derive", "env"] }
1515
mithril-client = { path = "../../mithril-client" }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"
1818
slog-term = "2.9.1"
19-
tokio = { version = "1.40.0", features = ["full"] }
19+
tokio = { version = "1.41.0", features = ["full"] }

examples/client-cardano-transaction/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ license = "Apache-2.0"
1010
repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
13-
anyhow = "1.0.89"
13+
anyhow = "1.0.92"
1414
clap = { version = "4.5.20", features = ["derive", "env"] }
1515
mithril-client = { path = "../../mithril-client" }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"
1818
slog-term = "2.9.1"
19-
tokio = { version = "1.40.0", features = ["full"] }
19+
tokio = { version = "1.41.0", features = ["full"] }

examples/client-mithril-stake-distribution/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ license = "Apache-2.0"
1010
repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
13-
anyhow = "1.0.89"
13+
anyhow = "1.0.92"
1414
clap = { version = "4.5.20", features = ["derive", "env"] }
1515
mithril-client = { path = "../../mithril-client" }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"
1818
slog-term = "2.9.1"
19-
tokio = { version = "1.40.0", features = ["full"] }
19+
tokio = { version = "1.41.0", features = ["full"] }

examples/client-snapshot/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ license = "Apache-2.0"
1010
repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
13-
anyhow = "1.0.89"
13+
anyhow = "1.0.92"
1414
async-trait = "0.1.83"
1515
clap = { version = "4.5.20", features = ["derive", "env"] }
1616
futures = "0.3.31"
1717
indicatif = "0.17.8"
1818
mithril-client = { path = "../../mithril-client", features = ["fs"] }
19-
tokio = { version = "1.40.0", features = ["full"] }
19+
tokio = { version = "1.41.0", features = ["full"] }

internal/mithril-build-script/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ include = ["**/*.rs", "Cargo.toml", "README.md", ".gitignore"]
1111

1212
[dependencies]
1313
semver = "1.0.23"
14-
serde_json = "1.0.128"
14+
serde_json = "1.0.132"
1515
serde_yaml = "0.9.34"

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.37"
16-
syn = { version = "2.0.79", features = ["full"] }
16+
syn = { version = "2.0.87", features = ["full"] }
1717

1818
[features]
1919
default = []

internal/mithril-doc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ include = ["**/*.rs", "Cargo.toml", "README.md", ".gitignore"]
1111

1212
[dependencies]
1313
clap = { version = "4.5.20", features = ["derive", "env"] }
14-
config = "0.14.0"
14+
config = "0.14.1"
1515
mithril-doc-derive = { path = "../mithril-doc-derive" }
1616

1717
[dev-dependencies]
18-
regex = "1.11.0"
18+
regex = "1.11.1"
1919

2020
[features]
2121
default = []

internal/mithril-metric/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ repository = { workspace = true }
1212
crate-type = ["lib", "cdylib", "staticlib"]
1313

1414
[dependencies]
15-
anyhow = "1.0.89"
15+
anyhow = "1.0.92"
1616
axum = "0.7.7"
1717
mithril-common = { path = "../../mithril-common" }
1818
paste = "1.0.15"
1919
prometheus = "0.13.4"
20-
reqwest = { version = "0.12.8", features = ["json", "stream"] }
20+
reqwest = { version = "0.12.9", features = ["json", "stream"] }
2121
slog = { version = "2.7.0", features = [
2222
"max_level_trace",
2323
"release_max_level_debug",
2424
] }
25-
tokio = { version = "1.40.0" }
25+
tokio = { version = "1.41.0" }
2626

2727
[dev-dependencies]
2828
prometheus-parse = "0.2.5"

0 commit comments

Comments
 (0)