Skip to content

Commit 5e944b9

Browse files
committed
chore: upgrade Rust dependencies
1 parent 55e638b commit 5e944b9

File tree

25 files changed

+166
-166
lines changed

25 files changed

+166
-166
lines changed

demo/protocol-demo/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ repository = { workspace = true }
1010

1111
[dependencies]
1212
blake2 = "0.10.6"
13-
clap = { version = "4.5.28", features = ["derive"] }
13+
clap = { version = "4.5.32", features = ["derive"] }
1414
hex = "0.4.3"
1515
mithril-common = { path = "../../mithril-common", features = ["fs"] }
1616
mithril-doc = { path = "../../internal/mithril-doc" }
17-
rand_chacha = "0.3.1"
18-
rand_core = "0.6.4"
19-
serde = { version = "1.0.217", features = ["derive"] }
20-
serde_json = "1.0.138"
17+
rand_chacha = "0.9.0"
18+
rand_core = "0.9.3"
19+
serde = { version = "1.0.219", features = ["derive"] }
20+
serde_json = "1.0.140"
2121

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

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

Lines changed: 4 additions & 4 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.95"
14-
async-trait = "0.1.86"
15-
clap = { version = "4.5.28", features = ["derive", "env"] }
13+
anyhow = "1.0.97"
14+
async-trait = "0.1.88"
15+
clap = { version = "4.5.32", features = ["derive", "env"] }
1616
futures = "0.3.31"
1717
indicatif = "0.17.11"
1818
mithril-client = { path = "../../mithril-client", features = ["fs", "unstable"] }
19-
tokio = { version = "1.43.0", features = ["full"] }
19+
tokio = { version = "1.44.1", features = ["full"] }

examples/client-cardano-database/Cargo.toml

Lines changed: 4 additions & 4 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.95"
14-
async-trait = "0.1.86"
15-
clap = { version = "4.5.28", features = ["derive", "env"] }
13+
anyhow = "1.0.97"
14+
async-trait = "0.1.88"
15+
clap = { version = "4.5.32", features = ["derive", "env"] }
1616
futures = "0.3.31"
1717
indicatif = "0.17.11"
1818
mithril-client = { path = "../../mithril-client", features = ["fs"] }
19-
tokio = { version = "1.43.0", features = ["full"] }
19+
tokio = { version = "1.44.1", features = ["full"] }

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

Lines changed: 3 additions & 3 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.95"
14-
clap = { version = "4.5.28", features = ["derive", "env"] }
13+
anyhow = "1.0.97"
14+
clap = { version = "4.5.32", 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.43.0", features = ["full"] }
19+
tokio = { version = "1.44.1", features = ["full"] }

examples/client-cardano-transaction/Cargo.toml

Lines changed: 3 additions & 3 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.95"
14-
clap = { version = "4.5.28", features = ["derive", "env"] }
13+
anyhow = "1.0.97"
14+
clap = { version = "4.5.32", 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.43.0", features = ["full"] }
19+
tokio = { version = "1.44.1", features = ["full"] }

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

Lines changed: 3 additions & 3 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.95"
14-
clap = { version = "4.5.28", features = ["derive", "env"] }
13+
anyhow = "1.0.97"
14+
clap = { version = "4.5.32", 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.43.0", features = ["full"] }
19+
tokio = { version = "1.44.1", 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.25"
14-
serde_json = "1.0.138"
13+
semver = "1.0.26"
14+
serde_json = "1.0.140"
1515
serde_yaml = "0.9.34"

internal/mithril-cli-helper/Cargo.toml

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

1212
[dependencies]
13-
config = "0.15.7"
13+
config = "0.15.11"
1414

1515
[features]
1616
default = []

internal/mithril-doc-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ repository = { workspace = true }
1212
proc-macro = true
1313

1414
[dependencies]
15-
quote = "1.0.38"
16-
syn = { version = "2.0.98", features = ["full"] }
15+
quote = "1.0.40"
16+
syn = { version = "2.0.100", 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.28", features = ["derive", "env"] }
14-
config = "0.15.7"
13+
clap = { version = "4.5.32", features = ["derive", "env"] }
14+
config = "0.15.11"
1515
mithril-doc-derive = { path = "../mithril-doc-derive" }
1616

1717
[dev-dependencies]

0 commit comments

Comments
 (0)