Remove the `halo2-batch` feature flag and rename `halo2-multicore` to just `multicore`.

This commit is contained in:
Kris Nuttycombe 2023-03-20 13:27:01 -06:00
parent 7a7f3ec7e7
commit 46d6766104
1 changed files with 2 additions and 3 deletions

View File

@ -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"]