Skip to content

Commit

Permalink
fix multicore compiling issue
Browse files Browse the repository at this point in the history
Co-Authored-By: Carlos Pérez <[email protected]>
  • Loading branch information
kilic and CPerezz committed Jan 7, 2024
1 parent cbe633f commit e6861b0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions halo2_proofs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ harness = false
backtrace = { version = "0.3", optional = true }
ff = "0.13"
group = "0.13"
halo2curves = { version = "0.5.0" }
halo2curves = { version = "0.5.0", default-features = false }
rand_core = { version = "0.6", default-features = false }
tracing = "0.1"
blake2b_simd = "1" # MSRV 1.66.0
Expand Down Expand Up @@ -80,15 +80,16 @@ serde_json = "1"
getrandom = { version = "0.2", features = ["js"] }

[features]
default = ["batch", "multicore"]
multicore = ["maybe-rayon/threads"]
default = ["batch", "multicore", "bits"]
multicore = ["maybe-rayon/threads", "halo2curves/multicore"]
dev-graph = ["plotters", "tabbycat"]
test-dev-graph = [
"dev-graph",
"plotters/bitmap_backend",
"plotters/bitmap_encoder",
"plotters/ttf",
]
bits = ["halo2curves/bits"]
gadget-traces = ["backtrace"]
thread-safe-region = []
sanity-checks = []
Expand Down

0 comments on commit e6861b0

Please sign in to comment.