From 49dfc22fde7ade6c28b467ac22c680207479e098 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 3 Jan 2024 18:22:51 +0000 Subject: [PATCH] Enable `multicore` feature flag by default This matches the `orchard` crate. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 685312e..31e0e22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,6 +80,8 @@ rand_xorshift = "0.3" pprof = { version = "0.11", features = ["criterion", "flamegraph"] } # MSRV 1.56 [features] +default = ["multicore"] + ## Enables multithreading support for creating proofs. multicore = ["bellman/multicore"]