Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
671 changes: 305 additions & 366 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions demo/protocol-demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithrildemo"
version = "0.1.41"
version = "0.1.42"
authors = { workspace = true }
edition = { workspace = true }
documentation = { workspace = true }
Expand All @@ -9,17 +9,17 @@ license = { workspace = true }
repository = { workspace = true }

[dependencies]
base64 = "0.22.0"
base64 = "0.22.1"
blake2 = "0.10.6"
clap = { version = "4.4.18", features = ["derive"] }
clap = { version = "4.5.16", features = ["derive"] }
hex = "0.4.3"
log = "0.4.20"
log = "0.4.22"
mithril-common = { path = "../../mithril-common", features = ["fs"] }
mithril-doc = { path = "../../internal/mithril-doc" }
rand_chacha = "0.3.1"
rand_core = "0.6.4"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"

[target.'cfg(not(windows))'.dependencies]
# non-windows: use default rug backend
Expand Down
5,268 changes: 3,267 additions & 2,001 deletions docs/website/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mithril-doc",
"version": "0.1.40",
"version": "0.1.41",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand All @@ -16,9 +16,9 @@
"pretty:write": "prettier --write '**/*.{js,md}'"
},
"dependencies": {
"@docusaurus/core": "^3.4.0",
"@docusaurus/preset-classic": "^3.4.0",
"@docusaurus/theme-mermaid": "^3.4.0",
"@docusaurus/core": "^3.5.2",
"@docusaurus/preset-classic": "^3.5.2",
"@docusaurus/theme-mermaid": "^3.5.2",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand Down
10 changes: 5 additions & 5 deletions examples/client-cardano-stake-distribution/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "client-cardano-stake-distribution"
description = "Mithril client cardano stake distribution example"
version = "0.1.0"
version = "0.1.1"
authors = ["[email protected]", "[email protected]"]
documentation = "https://mithril.network/doc"
edition = "2021"
Expand All @@ -10,10 +10,10 @@ license = "Apache-2.0"
repository = "https://github.com/input-output-hk/mithril/"

[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.18", features = ["derive", "env"] }
anyhow = "1.0.86"
clap = { version = "4.5.16", features = ["derive", "env"] }
mithril-client = { path = "../../mithril-client", features = ["unstable"] }
slog = "2.7.0"
slog-async = "2.8.0"
slog-term = "2.9.0"
tokio = { version = "1.37.0", features = ["full"] }
slog-term = "2.9.1"
tokio = { version = "1.40.0", features = ["full"] }
10 changes: 5 additions & 5 deletions examples/client-cardano-transaction/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "client-cardano-transaction"
description = "Mithril client cardano-transaction example"
version = "0.1.10"
version = "0.1.11"
authors = ["[email protected]", "[email protected]"]
documentation = "https://mithril.network/doc"
edition = "2021"
Expand All @@ -10,10 +10,10 @@ license = "Apache-2.0"
repository = "https://github.com/input-output-hk/mithril/"

[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.18", features = ["derive", "env"] }
anyhow = "1.0.86"
clap = { version = "4.5.16", features = ["derive", "env"] }
mithril-client = { path = "../../mithril-client", features = ["unstable"] }
slog = "2.7.0"
slog-async = "2.8.0"
slog-term = "2.9.0"
tokio = { version = "1.37.0", features = ["full"] }
slog-term = "2.9.1"
tokio = { version = "1.40.0", features = ["full"] }
10 changes: 5 additions & 5 deletions examples/client-mithril-stake-distribution/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "client-mithril-stake-distribution"
description = "Mithril client stake distribution example"
version = "0.1.16"
version = "0.1.17"
authors = ["[email protected]", "[email protected]"]
documentation = "https://mithril.network/doc"
edition = "2021"
Expand All @@ -10,10 +10,10 @@ license = "Apache-2.0"
repository = "https://github.com/input-output-hk/mithril/"

[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.18", features = ["derive", "env"] }
anyhow = "1.0.86"
clap = { version = "4.5.16", features = ["derive", "env"] }
mithril-client = { path = "../../mithril-client" }
slog = "2.7.0"
slog-async = "2.8.0"
slog-term = "2.9.0"
tokio = { version = "1.37.0", features = ["full"] }
slog-term = "2.9.1"
tokio = { version = "1.40.0", features = ["full"] }
12 changes: 6 additions & 6 deletions examples/client-snapshot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "client-snapshot"
description = "Mithril client snapshot example"
version = "0.1.15"
version = "0.1.16"
authors = ["[email protected]", "[email protected]"]
documentation = "https://mithril.network/doc"
edition = "2021"
Expand All @@ -10,10 +10,10 @@ license = "Apache-2.0"
repository = "https://github.com/input-output-hk/mithril/"

[dependencies]
anyhow = "1.0.79"
async-trait = "0.1.77"
clap = { version = "4.4.18", features = ["derive", "env"] }
anyhow = "1.0.86"
async-trait = "0.1.82"
clap = { version = "4.5.16", features = ["derive", "env"] }
futures = "0.3.30"
indicatif = "0.17.7"
indicatif = "0.17.8"
mithril-client = { path = "../../mithril-client", features = ["fs"] }
tokio = { version = "1.37.0", features = ["full"] }
tokio = { version = "1.40.0", features = ["full"] }
59 changes: 37 additions & 22 deletions flake.lock

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

8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
crane.url = "github:ipetkov/crane";
crane.inputs.nixpkgs.follows = "nixpkgs";
crane.url = "github:ipetkov/crane?ref=v0.18.0";
};

outputs = inputs:
Expand All @@ -20,11 +19,12 @@
pkgs,
config,
system,
inputs',
self',
...
}: let
inherit (inputs.nixpkgs) lib;
craneLib = inputs.crane.lib.${system};
inherit (pkgs) lib;
craneLib = inputs.crane.mkLib pkgs;

clean = root:
lib.cleanSourceWith {
Expand Down
8 changes: 4 additions & 4 deletions internal/mithril-build-script/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithril-build-script"
version = "0.2.9"
version = "0.2.10"
description = "A toolbox for Mithril crates build scripts"
authors = { workspace = true }
edition = { workspace = true }
Expand All @@ -10,6 +10,6 @@ repository = { workspace = true }
include = ["**/*.rs", "Cargo.toml", "README.md", ".gitignore"]

[dependencies]
semver = "1.0.21"
serde_json = "1.0.115"
serde_yaml = "0.9.31"
semver = "1.0.23"
serde_json = "1.0.127"
serde_yaml = "0.9.34"
6 changes: 3 additions & 3 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.8"
version = "0.1.9"
description = "An internal macro to support documentation generation."
authors = { workspace = true }
edition = { workspace = true }
Expand All @@ -12,8 +12,8 @@ repository = { workspace = true }
proc-macro = true

[dependencies]
quote = "1.0.35"
syn = { version = "2.0.48", features = ["full"] }
quote = "1.0.37"
syn = { version = "2.0.77", features = ["full"] }

[features]
default = []
6 changes: 3 additions & 3 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.9"
version = "0.1.10"
description = "An internal crate to generate documentation."
authors = { workspace = true }
edition = { workspace = true }
Expand All @@ -10,12 +10,12 @@ repository = { workspace = true }
include = ["**/*.rs", "Cargo.toml", "README.md", ".gitignore"]

[dependencies]
clap = { version = "4.4.6", features = ["derive", "env"] }
clap = { version = "4.5.16", features = ["derive", "env"] }
config = "0.14.0"
mithril-doc-derive = { path = "../mithril-doc-derive" }

[dev-dependencies]
regex = "1.10.3"
regex = "1.10.6"

[features]
default = []
24 changes: 12 additions & 12 deletions internal/mithril-persistence/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithril-persistence"
version = "0.2.24"
version = "0.2.25"
description = "Common types, interfaces, and utilities to persist data for Mithril nodes."
authors = { workspace = true }
edition = { workspace = true }
Expand All @@ -12,24 +12,24 @@ repository = { workspace = true }
crate-type = ["lib", "cdylib", "staticlib"]

[dependencies]
anyhow = "1.0.79"
async-trait = "0.1.77"
chrono = { version = "0.4.33", features = ["serde"] }
anyhow = "1.0.86"
async-trait = "0.1.82"
chrono = { version = "0.4.38", features = ["serde"] }
hex = "0.4.3"
mithril-common = { path = "../../mithril-common", features = ["fs"] }
semver = "1.0.21"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
semver = "1.0.23"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
sha2 = "0.10.8"
slog = "2.7.0"
sqlite = { version = "0.36.0", features = ["bundled"] }
thiserror = "1.0.56"
tokio = { version = "1.37.0", features = ["sync"] }
sqlite = { version = "0.36.1", features = ["bundled"] }
thiserror = "1.0.63"
tokio = { version = "1.40.0", features = ["sync"] }

[dev-dependencies]
mithril-common = { path = "../../mithril-common", features = ["test_tools"] }
mockall = "0.13.0"
slog-async = "2.8.0"
slog-scope = "4.4.0"
slog-term = "2.9.0"
tokio = { version = "1.37.0", features = ["macros", "time"] }
slog-term = "2.9.1"
tokio = { version = "1.40.0", features = ["macros", "time"] }
Loading