Merge pull request #383 from nuttycom/fix/remove_batch_feature

Remove the `halo2-batch` feature flag and rename `halo2-multicore` to just `multicore`
This commit is contained in:
Kris Nuttycombe 2023-03-20 13:47:08 -06:00 committed by GitHub
commit 6cbde279e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"]