Skip to content

Commit

Permalink
Merge pull request #1160 from dusk-network/apk_parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
herr-seppia authored Jun 19, 2024
2 parents b7a4838 + 20d88b1 commit 862adcb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async-channel = "1.7.1"
async-trait = "0.1"
anyhow = "1.0"
node-data = { version = "0.1", path = "../node-data" }
execution-core = { version = "0.1.0", path = "../execution-core" }
execution-core = { version = "0.1.0", path = "../execution-core", features = ["parallel"] }
dusk-merkle = { version = "0.5", features = ["size_32"] }
thiserror = "1"
time-util = { version = "0.3", features = ["chrono"] }
Expand Down
4 changes: 4 additions & 0 deletions execution-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ phoenix-core = { version = "0.26", default-features = false, features = ["rkyv-i
dusk-bytes = "0.1"
rkyv = { version = "0.7", default-features = false, features = ["size_32"] }
bytecheck = { version = "0.6", default-features = false }

[features]
# It enables parallel thread aggregation of BlsPublicKey
parallel = ["bls12_381-bls/parallel"]

0 comments on commit 862adcb

Please sign in to comment.