plonky2/Cargo.toml
Daniel Lubarov eb7468e7e8 Incremental release builds
Since it's a library, in practice release builds are used for slower tests, not for a binary that needs to be reproducible.
2023-04-15 10:45:40 -07:00

20 lines
423 B
TOML

[workspace]
members = ["evm", "field", "maybe_rayon", "plonky2", "starky", "util"]
[profile.release]
opt-level = 3
incremental = true
#lto = "fat"
#codegen-units = 1
[profile.bench]
opt-level = 3
[patch.crates-io]
plonky2_evm = { path = "evm" }
plonky2_field = { path = "field" }
plonky2_maybe_rayon = { path = "maybe_rayon" }
plonky2 = { path = "plonky2" }
starky = { path = "starky" }
plonky2_util = { path = "util" }