Skip to content
Open
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
1,398 changes: 828 additions & 570 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,16 @@ pretty_assertions = { version = "1.4" }
prost = { default-features = false, version = "=0.14.3" }
protox = { version = "=0.9.1" }
rand = { version = "0.9" }
rand_chacha = { version = "0.9" }
rand_chacha = { default-features = false, version = "0.9" }
reqwest = { version = "0.13" }
rstest = { version = "0.26" }
serde = { features = ["derive"], version = "1" }
tempfile = { version = "3" }
thiserror = { default-features = false, version = "2.0" }
tokio = { features = ["rt-multi-thread"], version = "1.46" }
tokio-stream = { version = "0.1" }
tokio-util = { version = "0.7" }
toml = { version = "0.9" }
toml = "1.0"
tonic = { default-features = false, version = "0.14" }
tonic-health = { version = "0.14" }
tonic-prost = { version = "0.14" }
Expand Down
6 changes: 3 additions & 3 deletions bin/network-monitor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ miden-protocol = { features = ["std", "testing"], workspace = true }
miden-standards = { workspace = true }
miden-testing = { workspace = true }
miden-tx = { features = ["std"], workspace = true }
rand = { version = "0.9" }
rand_chacha = { version = "0.9" }
reqwest = { features = ["json"], version = "0.12" }
rand = { workspace = true }
rand_chacha = { workspace = true }
reqwest = { features = ["json", "query"], workspace = true }
serde = { features = ["derive"], version = "1.0" }
serde_json = { version = "1.0" }
sha2 = { version = "0.10" }
Expand Down
1 change: 0 additions & 1 deletion bin/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,4 @@ url = { workspace = true }
miden-node-rocksdb-cxx-linkage-fix = { workspace = true }

[dev-dependencies]
figment = { features = ["env", "test", "toml"], version = "0.10" }
miden-node-utils = { features = ["tracing-forest"], workspace = true }
2 changes: 1 addition & 1 deletion bin/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.90-slim-bullseye AS chef
FROM rust:1.91-slim-bullseye AS chef
# Install build dependencies. RocksDB is compiled from source by librocksdb-sys.
RUN apt-get update && \
apt-get -y upgrade && \
Expand Down
4 changes: 2 additions & 2 deletions crates/block-producer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ miden-protocol = { default-features = true, workspace = true }
miden-remote-prover-client = { features = ["batch-prover", "block-prover"], workspace = true }
miden-standards = { workspace = true }
miden-tx-batch-prover = { workspace = true }
rand = { version = "0.9" }
rand = { workspace = true }
thiserror = { workspace = true }
tokio = { features = ["macros", "net", "rt-multi-thread"], workspace = true }
tokio-stream = { features = ["net"], workspace = true }
Expand All @@ -49,7 +49,7 @@ miden-protocol = { default-features = true, features = ["testing"], works
miden-standards = { features = ["testing"], workspace = true }
miden-tx = { features = ["testing"], workspace = true }
pretty_assertions = "1.4"
rand_chacha = { default-features = false, version = "0.9" }
rand_chacha = { default-features = false, workspace = true }
rstest = { workspace = true }
serial_test = "3.2"
tempfile = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/remote-prover-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ std = ["miden-protocol/std", "miden-tx/std"]
tx-prover = ["dep:miden-protocol", "dep:miden-tx", "dep:tokio"]

[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
getrandom = { features = ["wasm_js"], version = "0.3" }
getrandom = { features = ["wasm_js"], version = "0.4" }
tonic = { features = ["codegen"], workspace = true }
tonic-web-wasm-client = { default-features = false, version = "0.8" }
tonic-web-wasm-client = { default-features = false, version = "0.9" }

[target.'cfg(not(all(target_arch = "wasm32", target_os = "unknown")))'.dependencies]
tonic = { features = ["codegen", "tls-native-roots", "tls-ring", "transport"], workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ miden-node-store = { features = ["rocksdb"], workspace = true }
miden-node-utils = { features = ["testing", "tracing-forest"], workspace = true }
miden-protocol = { default-features = true, features = ["testing"], workspace = true }
miden-standards = { workspace = true }
reqwest = { version = "0.12" }
reqwest = { workspace = true }
rstest = { workspace = true }
tempfile = { workspace = true }
6 changes: 3 additions & 3 deletions crates/store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ serde = { features = ["derive"], version = "1" }
thiserror = { workspace = true }
tokio = { features = ["fs", "rt-multi-thread"], workspace = true }
tokio-stream = { features = ["net"], workspace = true }
toml = { version = "0.9" }
toml = { workspace = true }
tonic = { default-features = true, workspace = true }
tonic-reflection = { workspace = true }
tower-http = { features = ["util"], workspace = true }
Expand All @@ -57,7 +57,7 @@ miden-protocol = { features = ["std"], workspace = true }

[dev-dependencies]
assert_matches = { workspace = true }
criterion = { version = "0.5" }
criterion = "0.8"
fs-err = { workspace = true }
miden-node-test-macro = { workspace = true }
miden-node-utils = { features = ["testing", "tracing-forest"], workspace = true }
Expand All @@ -66,7 +66,7 @@ miden-standards = { features = ["testing"], workspace = true }
rand = { workspace = true }
regex = { version = "1.11" }
tempfile = { workspace = true }
termtree = { version = "0.5" }
termtree = "1.0"

[features]
default = ["rocksdb"]
Expand Down
4 changes: 1 addition & 3 deletions crates/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ testing = ["miden-protocol/testing"]
[dependencies]
anyhow = { workspace = true }
bytes = { version = "1.10" }
figment = { features = ["env", "toml"], version = "0.10" }
http = { workspace = true }
http-body-util = { version = "0.1" }
itertools = { workspace = true }
Expand All @@ -31,13 +30,12 @@ opentelemetry = { version = "0.31" }
opentelemetry-otlp = { default-features = false, features = ["grpc-tonic", "tls-roots", "trace"], version = "0.31" }
opentelemetry_sdk = { features = ["rt-tokio", "testing"], version = "0.31" }
rand = { workspace = true }
serde = { features = ["derive"], version = "1.0" }
thiserror = { workspace = true }
tokio = { workspace = true }
tonic = { default-features = true, workspace = true }
tower-http = { features = ["catch-panic"], workspace = true }
tracing = { workspace = true }
tracing-forest = { features = ["chrono"], optional = true, version = "0.2" }
tracing-forest = { features = ["chrono"], optional = true, version = "0.3" }
tracing-opentelemetry = { version = "0.32" }
tracing-subscriber = { workspace = true }
url = { workspace = true }
Expand Down
23 changes: 0 additions & 23 deletions crates/utils/src/config.rs

This file was deleted.

1 change: 0 additions & 1 deletion crates/utils/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pub mod config;
pub mod cors;
pub mod crypto;
#[cfg(feature = "testing")]
Expand Down