From 8f1afaed4420f8d3aa854e477093877e387f28f8 Mon Sep 17 00:00:00 2001 From: Herr Seppia Date: Tue, 7 May 2024 10:31:31 +0200 Subject: [PATCH] consensus: change bls12_381-bls to use parallel feature See also #1149 --- consensus/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index 99b2fba0be..5537442bd9 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -18,7 +18,7 @@ rand = { version = "0.8", default-features = false, features = ["std_rng"] } tokio = { version = "1", features = ["full"] } tracing-subscriber = "0.2" tracing = "0.1" -bls12_381-bls = { version = "0.2" } +bls12_381-bls = { version = "0.2", features = ["parallel"] } sha3 = { version = "0.10" } num-bigint = { version = "0.4.3", default-features = false } hex = { version = "0.4.3" }