Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Enhancements

- Added `miden-genesis` tool for generating canonical AggLayer genesis accounts and configuration ([#1797](https://github.com/0xMiden/node/pull/1797)).
- Expose per-tree RocksDB tuning options ([#1782](https://github.com/0xMiden/node/pull/1782)).
- Expose per-tree RocksDB tuning options ([#1782](https://github.com/0xMiden/node/pull/1782)).
- Added a gRPC server to the NTX builder, configurable via `--ntx-builder.url` / `MIDEN_NODE_NTX_BUILDER_URL` (https://github.com/0xMiden/node/issues/1758).
- Added `GetNoteError` gRPC endpoint to query the latest execution error for network notes (https://github.com/0xMiden/node/issues/1758).
Expand Down
85 changes: 52 additions & 33 deletions Cargo.lock

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

41 changes: 21 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[workspace]
members = [
"bin/genesis",
"bin/network-monitor",
"bin/node",
"bin/remote-prover",
Expand Down Expand Up @@ -31,7 +32,7 @@ license = "MIT"
readme = "README.md"
repository = "https://github.com/0xMiden/node"
rust-version = "1.93"
version = "0.14.0-alpha.5"
version = "0.14.0-alpha.8"

# Optimize the cryptography for faster tests involving account creation.
[profile.test.package.miden-crypto]
Expand All @@ -46,30 +47,30 @@ debug = true

[workspace.dependencies]
# Workspace crates.
miden-large-smt-backend-rocksdb = { path = "crates/large-smt-backend-rocksdb", version = "=0.14.0-alpha.5" }
miden-node-block-producer = { path = "crates/block-producer", version = "=0.14.0-alpha.5" }
miden-node-db = { path = "crates/db", version = "=0.14.0-alpha.5" }
miden-node-grpc-error-macro = { path = "crates/grpc-error-macro", version = "=0.14.0-alpha.5" }
miden-node-ntx-builder = { path = "crates/ntx-builder", version = "=0.14.0-alpha.5" }
miden-node-proto = { path = "crates/proto", version = "=0.14.0-alpha.5" }
miden-node-proto-build = { path = "proto", version = "=0.14.0-alpha.5" }
miden-node-rpc = { path = "crates/rpc", version = "=0.14.0-alpha.5" }
miden-node-store = { path = "crates/store", version = "=0.14.0-alpha.5" }
miden-large-smt-backend-rocksdb = { path = "crates/large-smt-backend-rocksdb", version = "=0.14.0-alpha.8" }
miden-node-block-producer = { path = "crates/block-producer", version = "=0.14.0-alpha.8" }
miden-node-db = { path = "crates/db", version = "=0.14.0-alpha.8" }
miden-node-grpc-error-macro = { path = "crates/grpc-error-macro", version = "=0.14.0-alpha.8" }
miden-node-ntx-builder = { path = "crates/ntx-builder", version = "=0.14.0-alpha.8" }
miden-node-proto = { path = "crates/proto", version = "=0.14.0-alpha.8" }
miden-node-proto-build = { path = "proto", version = "=0.14.0-alpha.8" }
miden-node-rpc = { path = "crates/rpc", version = "=0.14.0-alpha.8" }
miden-node-store = { path = "crates/store", version = "=0.14.0-alpha.8" }
miden-node-test-macro = { path = "crates/test-macro" }
miden-node-utils = { path = "crates/utils", version = "=0.14.0-alpha.5" }
miden-node-validator = { path = "crates/validator", version = "=0.14.0-alpha.5" }
miden-remote-prover-client = { path = "crates/remote-prover-client", version = "=0.14.0-alpha.5" }
miden-node-utils = { path = "crates/utils", version = "=0.14.0-alpha.8" }
miden-node-validator = { path = "crates/validator", version = "=0.14.0-alpha.8" }
miden-remote-prover-client = { path = "crates/remote-prover-client", version = "=0.14.0-alpha.8" }
# Temporary workaround until <https://github.com/rust-rocksdb/rust-rocksdb/pull/1029>
# is part of `rocksdb-rust` release
miden-node-rocksdb-cxx-linkage-fix = { path = "crates/rocksdb-cxx-linkage-fix", version = "=0.14.0-alpha.5" }
miden-node-rocksdb-cxx-linkage-fix = { path = "crates/rocksdb-cxx-linkage-fix", version = "=0.14.0-alpha.8" }

# miden-base aka protocol dependencies. These should be updated in sync.
miden-block-prover = { version = "=0.14.0-alpha.1" }
miden-protocol = { default-features = false, version = "=0.14.0-alpha.1" }
miden-standards = { version = "=0.14.0-alpha.1" }
miden-testing = { version = "=0.14.0-alpha.1" }
miden-tx = { default-features = false, version = "=0.14.0-alpha.1" }
miden-tx-batch-prover = { version = "=0.14.0-alpha.1" }
miden-block-prover = { version = "=0.14.0-alpha.2" }
miden-protocol = { default-features = false, version = "=0.14.0-alpha.2" }
miden-standards = { version = "=0.14.0-alpha.2" }
miden-testing = { version = "=0.14.0-alpha.2" }
miden-tx = { default-features = false, version = "=0.14.0-alpha.2" }
miden-tx-batch-prover = { version = "=0.14.0-alpha.2" }

# Other miden dependencies. These should align with those expected by miden-base.
miden-air = { features = ["std", "testing"], version = "0.20" }
Expand Down
34 changes: 34 additions & 0 deletions bin/genesis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[package]
authors.workspace = true
description = "A tool for generating canonical Miden genesis accounts and configuration"
edition.workspace = true
exclude.workspace = true
homepage.workspace = true
keywords = ["genesis", "miden"]
license.workspace = true
name = "miden-genesis"
publish = false
readme.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true

[lints]
workspace = true

[dependencies]
anyhow = { workspace = true }
clap = { workspace = true }
fs-err = { workspace = true }
hex = { workspace = true }
miden-agglayer = { version = "=0.14.0-alpha.2" }
miden-protocol = { features = ["std"], workspace = true }
miden-standards = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }

[dev-dependencies]
miden-node-store = { workspace = true }
miden-node-utils = { workspace = true }
tempfile = { workspace = true }
tokio = { features = ["macros", "rt-multi-thread"], workspace = true }
Loading
Loading