Skip to content

Commit dd881df

Browse files
authored
Merge pull request #1654 from input-output-hk/dlachaume/upgrade-dependencies
Upgrade dependencies
2 parents 9b71815 + 06a572d commit dd881df

File tree

22 files changed

+255
-488
lines changed

22 files changed

+255
-488
lines changed

Cargo.lock

Lines changed: 21 additions & 23 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithrildemo"
3-
version = "0.1.34"
3+
version = "0.1.35"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
documentation = { workspace = true }

examples/client-cardano-transaction/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "client-cardano-transaction"
33
description = "Mithril client cardano-transaction example"
4-
version = "0.1.3"
4+
version = "0.1.4"
55
66
documentation = "https://mithril.network/doc"
77
edition = "2021"
@@ -16,4 +16,4 @@ mithril-client = { path = "../../mithril-client", features = ["unstable"] }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"
1818
slog-term = "2.9.0"
19-
tokio = { version = "1.35.1", features = ["full"] }
19+
tokio = { version = "1.37.0", features = ["full"] }

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "client-mithril-stake-distribution"
33
description = "Mithril client stake distribution example"
4-
version = "0.1.10"
4+
version = "0.1.11"
55
66
documentation = "https://mithril.network/doc"
77
edition = "2021"
@@ -16,4 +16,4 @@ mithril-client = { path = "../../mithril-client" }
1616
slog = "2.7.0"
1717
slog-async = "2.8.0"
1818
slog-term = "2.9.0"
19-
tokio = { version = "1.35.1", features = ["full"] }
19+
tokio = { version = "1.37.0", features = ["full"] }

examples/client-snapshot/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "client-snapshot"
33
description = "Mithril client snapshot example"
4-
version = "0.1.9"
4+
version = "0.1.10"
55
66
documentation = "https://mithril.network/doc"
77
edition = "2021"
@@ -16,4 +16,4 @@ clap = { version = "4.4.18", features = ["derive", "env"] }
1616
futures = "0.3.30"
1717
indicatif = "0.17.7"
1818
mithril-client = { path = "../../mithril-client", features = ["fs"] }
19-
tokio = { version = "1.35.1", features = ["full"] }
19+
tokio = { version = "1.37.0", features = ["full"] }

flake.lock

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

internal/mithril-build-script/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-build-script"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "A toolbox for Mithril crates build scripts"
55
authors = { workspace = true }
66
edition = { workspace = true }

internal/mithril-doc-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-doc-derive"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "An internal macro to support documentation generation."
55
authors = { workspace = true }
66
edition = { workspace = true }

internal/mithril-doc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-doc"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "An internal crate to generate documentation."
55
authors = { workspace = true }
66
edition = { workspace = true }

internal/mithril-persistence/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-persistence"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
description = "Common types, interfaces, and utilities to persist data for Mithril nodes."
55
authors = { workspace = true }
66
edition = { workspace = true }
@@ -22,14 +22,14 @@ serde = { version = "1.0.196", features = ["derive"] }
2222
serde_json = "1.0.113"
2323
sha2 = "0.10.8"
2424
slog = "2.7.0"
25-
sqlite = { version = "0.34.0", features = ["bundled"] }
25+
sqlite = { version = "0.36.0", features = ["bundled"] }
2626
thiserror = "1.0.56"
27-
tokio = { version = "1.35.1", features = ["sync"] }
27+
tokio = { version = "1.37.0", features = ["sync"] }
2828

2929
[dev-dependencies]
3030
mithril-common = { path = "../../mithril-common", features = ["test_tools"] }
3131
mockall = "0.12.1"
3232
slog-async = "2.8.0"
3333
slog-scope = "4.4.0"
3434
slog-term = "2.9.0"
35-
tokio = { version = "1.35.1", features = ["macros", "time"] }
35+
tokio = { version = "1.37.0", features = ["macros", "time"] }

0 commit comments

Comments
 (0)