Skip to content

Commit

Permalink
feat: refactor binary using linear approach
Browse files Browse the repository at this point in the history
  • Loading branch information
SantiagoPittella committed Jan 31, 2025
1 parent 28f0632 commit 348b54c
Show file tree
Hide file tree
Showing 4 changed files with 235 additions and 145 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[workspace]
members = [
"bin/faucet",
"bin/stress-test",
"bin/node",
"bin/stress-test",
"crates/block-producer",
"crates/proto",
"crates/rpc",
Expand Down
44 changes: 22 additions & 22 deletions bin/stress-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
[package]
name = "miden-node-stress-test"
description = "A binary for running stress tests against the Miden node"
keywords = ["miden", "stress-test"]
edition.workspace = true
authors.workspace = true
description = "A binary for running stress tests against the Miden node"
edition.workspace = true
exclude.workspace = true
homepage.workspace = true
keywords = ["miden", "stress-test"]
license.workspace = true
name = "miden-node-stress-test"
readme.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
license.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
exclude.workspace = true
readme.workspace = true
version.workspace = true

[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "string"] }
miden-lib = { workspace = true }
miden-node-block-producer = { workspace = true, features = ["testing"]}
miden-node-proto = { workspace = true }
miden-node-store = { workspace = true }
miden-objects = { workspace = true, features = ["testing"] }
miden-processor = { workspace = true }
rand = { version = "0.8" }
rayon = "1.10"
tokio = { workspace = true, features = ["rt-multi-thread", "net", "macros", "sync", "time"] }
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "string"] }
miden-lib = { workspace = true }
miden-node-block-producer = { workspace = true, features = ["testing"] }
miden-node-proto = { workspace = true }
miden-node-store = { workspace = true }
miden-objects = { workspace = true, features = ["testing"] }
miden-processor = { workspace = true }
rand = { version = "0.8" }
rayon = "1.10"
tokio = { workspace = true, features = ["macros", "net", "rt-multi-thread", "sync", "time"] }
Loading

0 comments on commit 348b54c

Please sign in to comment.