Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 1 addition & 1 deletion bin/network-monitor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ miden-node-utils = { workspace = true }
miden-protocol = { features = ["std", "testing"], workspace = true }
miden-standards = { workspace = true }
miden-testing = { workspace = true }
miden-tx = { features = ["std"], workspace = true }
miden-tx = { features = ["concurrent", "std"], workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
reqwest = { features = ["json", "query"], workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion bin/remote-prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ assert_matches = { workspace = true }
miden-protocol = { features = ["testing"], workspace = true }
miden-standards = { features = ["testing"], workspace = true }
miden-testing = { workspace = true }
miden-tx = { features = ["testing"], workspace = true }
miden-tx = { features = ["concurrent", "testing"], workspace = true }
serial_test = { version = "3" }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/block-producer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ miden-node-utils = { features = ["testing"], workspace = true }
miden-node-validator = { workspace = true }
miden-protocol = { default-features = true, features = ["testing"], workspace = true }
miden-standards = { features = ["testing"], workspace = true }
miden-tx = { features = ["testing"], workspace = true }
miden-tx = { features = ["concurrent", "testing"], workspace = true }
pretty_assertions = "1.4"
rand_chacha = { default-features = false, workspace = true }
rstest = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/ntx-builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ miden-node-utils = { workspace = true }
miden-protocol = { default-features = true, workspace = true }
miden-remote-prover-client = { features = ["tx-prover"], workspace = true }
miden-standards = { workspace = true }
miden-tx = { default-features = true, workspace = true }
miden-tx = { features = ["concurrent"], workspace = true }
thiserror = { workspace = true }
tokio = { features = ["rt-multi-thread"], workspace = true }
tokio-stream = { features = ["net"], 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 @@ -23,7 +23,7 @@ miden-node-proto = { workspace = true }
miden-node-proto-build = { workspace = true }
miden-node-utils = { workspace = true }
miden-protocol = { default-features = true, workspace = true }
miden-tx = { default-features = true, workspace = true }
miden-tx = { features = ["concurrent"], workspace = true }
miden-tx-batch-prover = { workspace = true }
semver = { version = "1.0" }
thiserror = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/validator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ miden-node-proto = { workspace = true }
miden-node-proto-build = { features = ["internal"], workspace = true }
miden-node-utils = { features = ["testing"], workspace = true }
miden-protocol = { workspace = true }
miden-tx = { workspace = true }
miden-tx = { features = ["concurrent"], workspace = true }
thiserror = { workspace = true }
tokio = { features = ["macros", "net", "rt-multi-thread"], workspace = true }
tokio-stream = { features = ["net"], workspace = true }
Expand Down
Loading