Skip to content

Commit

Permalink
chore: fix testing feature flag dependencies for miden-client-web
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbinth committed Nov 8, 2024
1 parent e53be45 commit 1320835
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/web-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ edition.workspace = true
crate-type = ["cdylib"]

[features]
testing = ["miden-client/testing"]
testing = ["miden-client/testing", "miden-tx-prover/testing"]

[dependencies]
getrandom = { version = "0.2", features = ["js"] }
miden-client = { path = "../rust-client", version = "0.6", default-features = false, features = ["idxdb", "web-tonic", "testing"] }
miden-client = { version = "0.6", path = "../rust-client", default-features = false, features = ["idxdb", "web-tonic"] }
miden-lib = { workspace = true }
miden-objects = { workspace = true }
miden-tx-prover = { version = "0.6", default-features = false, features = ["async", "testing"] }
miden-tx-prover = { version = "0.6", default-features = false, features = ["async"] }
rand = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde-wasm-bindgen = { version = "0.6" }
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4" }
console_error_panic_hook = "0.1.6"
console_error_panic_hook = "0.1"

[dev-dependencies]
miden-client = { path = "../rust-client", default-features = false, features = ["idxdb", "web-tonic", "testing"] }
Expand Down

0 comments on commit 1320835

Please sign in to comment.