Skip to content

Commit f6531d7

Browse files
committed
chore: upgrade Rust dependencies
1 parent 725ed53 commit f6531d7

File tree

20 files changed

+87
-87
lines changed

20 files changed

+87
-87
lines changed

demo/protocol-demo/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ repository = { workspace = true }
1111
[dependencies]
1212
base64 = "0.22.1"
1313
blake2 = "0.10.6"
14-
clap = { version = "4.5.23", features = ["derive"] }
14+
clap = { version = "4.5.28", features = ["derive"] }
1515
hex = "0.4.3"
16-
log = "0.4.22"
16+
log = "0.4.25"
1717
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"
2121
serde = { version = "1.0.217", features = ["derive"] }
22-
serde_json = "1.0.134"
22+
serde_json = "1.0.138"
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
@@ -11,9 +11,9 @@ repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
1313
anyhow = "1.0.95"
14-
clap = { version = "4.5.23", features = ["derive", "env"] }
14+
clap = { version = "4.5.28", 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.42.0", features = ["full"] }
19+
tokio = { version = "1.43.0", features = ["full"] }

examples/client-cardano-transaction/Cargo.toml

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

1212
[dependencies]
1313
anyhow = "1.0.95"
14-
clap = { version = "4.5.23", features = ["derive", "env"] }
14+
clap = { version = "4.5.28", 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.42.0", features = ["full"] }
19+
tokio = { version = "1.43.0", features = ["full"] }

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

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

1212
[dependencies]
1313
anyhow = "1.0.95"
14-
clap = { version = "4.5.23", features = ["derive", "env"] }
14+
clap = { version = "4.5.28", 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.42.0", features = ["full"] }
19+
tokio = { version = "1.43.0", features = ["full"] }

examples/client-snapshot/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ repository = "https://github.com/input-output-hk/mithril/"
1111

1212
[dependencies]
1313
anyhow = "1.0.95"
14-
async-trait = "0.1.83"
15-
clap = { version = "4.5.23", features = ["derive", "env"] }
14+
async-trait = "0.1.86"
15+
clap = { version = "4.5.28", features = ["derive", "env"] }
1616
futures = "0.3.31"
17-
indicatif = "0.17.9"
17+
indicatif = "0.17.11"
1818
mithril-client = { path = "../../mithril-client", features = ["fs"] }
19-
tokio = { version = "1.42.0", features = ["full"] }
19+
tokio = { version = "1.43.0", features = ["full"] }

internal/mithril-build-script/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ repository = { workspace = true }
1010
include = ["**/*.rs", "Cargo.toml", "README.md", ".gitignore"]
1111

1212
[dependencies]
13-
semver = "1.0.24"
14-
serde_json = "1.0.134"
13+
semver = "1.0.25"
14+
serde_json = "1.0.138"
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.38"
16-
syn = { version = "2.0.94", features = ["full"] }
16+
syn = { version = "2.0.98", 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
@@ -10,8 +10,8 @@ repository = { workspace = true }
1010
include = ["**/*.rs", "Cargo.toml", "README.md", ".gitignore"]
1111

1212
[dependencies]
13-
clap = { version = "4.5.23", features = ["derive", "env"] }
14-
config = "0.15.4"
13+
clap = { version = "4.5.28", features = ["derive", "env"] }
14+
config = "0.15.7"
1515
mithril-doc-derive = { path = "../mithril-doc-derive" }
1616

1717
[dev-dependencies]

internal/mithril-metric/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ slog = { version = "2.7.0", features = [
2222
"max_level_trace",
2323
"release_max_level_debug",
2424
] }
25-
tokio = { version = "1.42.0" }
25+
tokio = { version = "1.43.0" }
2626

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

internal/mithril-persistence/Cargo.toml

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

1414
[dependencies]
1515
anyhow = "1.0.95"
16-
async-trait = "0.1.83"
16+
async-trait = "0.1.86"
1717
chrono = { version = "0.4.39", features = ["serde"] }
1818
hex = "0.4.3"
1919
mithril-common = { path = "../../mithril-common", features = ["fs"] }
20-
semver = "1.0.24"
20+
semver = "1.0.25"
2121
serde = { version = "1.0.217", features = ["derive"] }
22-
serde_json = "1.0.134"
22+
serde_json = "1.0.138"
2323
sha2 = "0.10.8"
2424
slog = "2.7.0"
2525
sqlite = { version = "0.36.1", features = ["bundled"] }
26-
thiserror = "2.0.9"
27-
tokio = { version = "1.42.0", features = ["sync"] }
26+
thiserror = "2.0.11"
27+
tokio = { version = "1.43.0", features = ["sync"] }
2828

2929
[dev-dependencies]
3030
mithril-common = { path = "../../mithril-common", features = ["test_tools"] }
3131
mockall = "0.13.1"
32-
tokio = { version = "1.42.0", features = ["macros", "time"] }
32+
tokio = { version = "1.43.0", features = ["macros", "time"] }

0 commit comments

Comments
 (0)