From 8f18a55ffe61b6481c4b7e69ab6fcffe47cb8b6a Mon Sep 17 00:00:00 2001 From: Kevaundray Wedderburn Date: Thu, 22 Aug 2024 17:31:05 +0100 Subject: [PATCH] remove rayon from dep --- cryptography/kzg_multi_open/Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cryptography/kzg_multi_open/Cargo.toml b/cryptography/kzg_multi_open/Cargo.toml index 6d3fa615..09ee46b3 100644 --- a/cryptography/kzg_multi_open/Cargo.toml +++ b/cryptography/kzg_multi_open/Cargo.toml @@ -15,7 +15,6 @@ bls12_381 = { workspace = true } polynomial = { workspace = true } maybe_rayon = { workspace = true } hex = { workspace = true } -rayon = { workspace = true, optional = true } sha2 = "0.10.8" [dev-dependencies] @@ -23,8 +22,8 @@ criterion = "0.5.1" rand = "0.8.4" [features] -default = [] -multithreading = ["rayon", "maybe_rayon/multithreading"] +singlethreading = ["bls12_381/blst-no-threads"] +multithreading = ["maybe_rayon/multithreading"] [[bench]] name = "benchmark"