Skip to content
Merged
1,169 changes: 614 additions & 555 deletions Cargo.lock

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,28 +47,28 @@ license = "Apache-2.0"
repository = "https://github.com/input-output-hk/mithril/"

[workspace.dependencies]
anyhow = "1.0.98"
anyhow = "1.0.99"
async-recursion = "1.1.1"
async-trait = "0.1.88"
async-trait = "0.1.89"
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5.41", features = ["derive", "env"] }
config = "0.15.13"
clap = { version = "4.5.47", features = ["derive", "env"] }
config = "0.15.15"
digest = { version = "0.10.7", features = ["alloc"] }
hex = "0.4.3"
mockall = "0.13.1"
rand_chacha = "0.3.1"
rand_core = { version = "0.6.4", features = ["std"] }
rayon = "1.10.0"
reqwest = { version = "0.12.22", default-features = false, features = ["json"] }
rayon = "1.11.0"
reqwest = { version = "0.12.23", default-features = false, features = ["json"] }
semver = "1.0.26"
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = "1.0.140"
serde_json = "1.0.143"
slog = "2.7.0"
slog-async = "2.8.0"
slog-bunyan = "2.5.0"
slog-term = "2.9.1"
strum = { version = "0.27.1", features = ["derive"] }
thiserror = "2.0.12"
tokio = { version = "1.46.1", features = ["rt", "sync", "time"] }
slog-term = "2.9.2"
strum = { version = "0.27.2", features = ["derive"] }
thiserror = "2.0.16"
tokio = { version = "1.47.1", features = ["rt", "sync", "time"] }
tracing = "0.1.41"
warp = "0.3.7"
warp = { version = "0.4.2", features = ["server", "websocket"] }
13 changes: 11 additions & 2 deletions docs/website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mithril-doc",
"version": "0.2.0",
"version": "0.2.1",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
5 changes: 3 additions & 2 deletions examples/client-wasm-nodejs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/client-wasm-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client-wasm-nodejs",
"version": "0.3.10",
"version": "0.3.11",
"private": true,
"type": "module",
"scripts": {
Expand Down
27 changes: 16 additions & 11 deletions examples/client-wasm-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions examples/client-wasm-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client-wasm-web",
"version": "0.3.10",
"version": "0.3.11",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.js",
Expand All @@ -12,9 +12,9 @@
"@mithril-dev/mithril-client-wasm": "file:../../mithril-client-wasm"
},
"devDependencies": {
"copy-webpack-plugin": "^13.0.0",
"copy-webpack-plugin": "^13.0.1",
"prettier": "^3.6.2",
"webpack": "^5.100.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithril-cardano-node-chain"
version = "0.1.8"
version = "0.1.9"
authors.workspace = true
documentation.workspace = true
edition.workspace = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ impl TxDatum {
#[strum_discriminants(name(TxDatumFieldTypeName))]
#[strum_discriminants(strum(serialize_all = "lowercase"))]
#[strum_discriminants(serde(rename_all = "lowercase"))]
#[strum_discriminants(doc = "The discriminants of the TxDatumFieldValue enum.")]
pub enum TxDatumFieldValue {
/// Bytes datum field value.
Bytes(String),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithril-cardano-node-internal-database"
version = "0.1.5"
version = "0.1.6"
description = "Mechanisms that allow Mithril nodes to read the files of a Cardano node internal database and compute digests from them"
authors.workspace = true
documentation.workspace = true
Expand Down Expand Up @@ -28,7 +28,7 @@ tokio = { workspace = true, features = ["fs", "io-util"] }
walkdir = "2.5.0"

[dev-dependencies]
criterion = { version = "0.6.0", features = ["html_reports", "async_tokio"] }
criterion = { version = "0.7.0", features = ["html_reports", "async_tokio"] }
mockall = { workspace = true }
slog-async = { workspace = true }
slog-term = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions internal/mithril-doc-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithril-doc-derive"
version = "0.1.21"
version = "0.1.22"
description = "An internal macro to support documentation generation."
authors = { workspace = true }
edition = { workspace = true }
Expand All @@ -16,4 +16,4 @@ default = []

[dependencies]
quote = "1.0.40"
syn = { version = "2.0.104", features = ["full"] }
syn = { version = "2.0.106", features = ["full"] }
4 changes: 2 additions & 2 deletions internal/mithril-doc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithril-doc"
version = "0.1.25"
version = "0.1.26"
description = "An internal crate to generate documentation."
authors = { workspace = true }
edition = { workspace = true }
Expand All @@ -19,4 +19,4 @@ mithril-doc-derive = { path = "../mithril-doc-derive" }

[dev-dependencies]
mithril-cli-helper = { path = "../mithril-cli-helper" }
regex = "1.11.1"
regex = "1.11.2"
4 changes: 2 additions & 2 deletions internal/tests/mithril-api-spec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithril-api-spec"
version = "0.1.5"
version = "0.1.6"
authors.workspace = true
documentation.workspace = true
edition.workspace = true
Expand All @@ -9,7 +9,7 @@ license.workspace = true
repository.workspace = true

[dependencies]
jsonschema = { version = "0.30.0" }
jsonschema = { version = "0.33.0" }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion internal/tests/mithril-test-http-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithril-test-http-server"
version = "0.1.0"
version = "0.1.1"
authors.workspace = true
documentation.workspace = true
edition.workspace = true
Expand Down
11 changes: 6 additions & 5 deletions internal/tests/mithril-test-http-server/src/test_http_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@ where
.build()
.expect("new rt");
let (shutdown_tx, shutdown_rx) = oneshot::channel();
let (address, server) = rt.block_on(async move {
warp::serve(filters).bind_with_graceful_shutdown(socket_addr, async {
shutdown_rx.await.ok();
})
let listener =
rt.block_on(async move { tokio::net::TcpListener::bind(socket_addr).await.unwrap() });
let address = listener.local_addr().unwrap();
let server = warp::serve(filters).incoming(listener).graceful(async {
shutdown_rx.await.ok();
});

let (panic_tx, _) = std_mpsc::channel();
Expand All @@ -72,7 +73,7 @@ where
thread::Builder::new()
.name(thread_name)
.spawn(move || {
rt.block_on(server);
rt.block_on(server.run());
let _ = panic_tx.send(());
})
.expect("thread spawn");
Expand Down
Loading
Loading