mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 13:53:07 +00:00
22 lines
568 B
TOML
22 lines
568 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
|
|
|
|
[patch.crates-io]
|
|
eth_trie_utils = { git = "https://github.com/mir-protocol/eth_trie_utils.git", rev = "e9ec4ec2aa2ae976b7c699ef40c1ffc716d87ed5" }
|
|
plonky2_evm = { path = "evm" }
|
|
plonky2_field = { path = "field" }
|
|
plonky2_maybe_rayon = { path = "maybe_rayon" }
|
|
plonky2 = { path = "plonky2" }
|
|
starky = { path = "starky" }
|
|
plonky2_util = { path = "util" }
|