plonky2/Cargo.toml
BGluth 5936c67f59 Now refers to sub-crates using paths (and removed patch section)
- Previously refered to specific `crates.io` versions.
- Motivation for this is to allow external projects to be able use
  specific revisions of this repo. Without this, a `[patch]` section
  is almost always required in the external project in order to force
  the internal plonky2 sub-crates to the same version, an approach which
  comes with its own issues.
2023-09-07 16:36:38 -06:00

13 lines
213 B
TOML

[workspace]
members = ["evm", "field", "maybe_rayon", "plonky2", "starky", "util"]
resolver = "2"
[profile.release]
opt-level = 3
incremental = true
#lto = "fat"
#codegen-units = 1
[profile.bench]
opt-level = 3