From 46d6766104b641fe0fa74b85a766e5519b327c7a Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Mon, 20 Mar 2023 13:27:01 -0600 Subject: [PATCH] Remove the `halo2-batch` feature flag and rename `halo2-multicore` to just `multicore`. --- Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6d387f50..747dba1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,9 +66,8 @@ pprof = { version = "0.9", features = ["criterion", "flamegraph"] } # MSRV 1.56 bench = false [features] -default = ["halo2-batch", "halo2-multicore"] -halo2-batch = ["halo2_proofs/batch"] -halo2-multicore = ["halo2_proofs/multicore"] +default = ["multicore"] +multicore = ["halo2_proofs/multicore"] dev-graph = ["halo2_proofs/dev-graph", "image", "plotters"] test-dependencies = ["proptest"]