Enable parallel execution for Merkle Tree (#306)

This commit is contained in:
Vinh Trịnh
2025-05-14 12:19:37 +07:00
committed by GitHub
parent a4cafa6adc
commit 7023e85fce
13 changed files with 645 additions and 453 deletions

View File

@@ -10,10 +10,7 @@ required-features = ["stateless"]
[dependencies]
rln = { path = "../rln", default-features = false }
num-bigint = { version = "0.4.6", default-features = false, features = [
"rand",
"serde",
] }
num-bigint = { version = "0.4.6", default-features = false }
js-sys = "0.3.77"
wasm-bindgen = "0.2.100"
serde-wasm-bindgen = "0.6.5"
@@ -27,7 +24,7 @@ console_error_panic_hook = { version = "0.1.7", optional = true }
zerokit_utils = { path = "../utils" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2.15", features = ["js"] }
getrandom = { version = "0.2.16", features = ["js"] }
[dev-dependencies]
serde_json = "1.0"