mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[workspace]
|
|
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"number",
|
|
"parser",
|
|
"powdr_cli",
|
|
"executor",
|
|
"riscv",
|
|
"parser_util",
|
|
"pil_analyzer",
|
|
"compiler",
|
|
"pilopt",
|
|
"asm_to_pil",
|
|
"halo2",
|
|
"backend",
|
|
"ast",
|
|
"analysis",
|
|
"linker",
|
|
"asm_utils",
|
|
"airgen",
|
|
"type_check",
|
|
"riscv_executor",
|
|
]
|
|
|
|
[patch."https://github.com/privacy-scaling-explorations/halo2.git"]
|
|
# TODO change back to this once the PR is merged
|
|
#halo2_proofs = { git = "https://github.com/appliedzkp/halo2.git", rev = "d3746109d7d38be53afc8ddae8fdfaf1f02ad1d7" }
|
|
halo2_proofs = { git = "https://github.com/powdr-org/halo2", branch = "kilic/shuffle" }
|
|
|
|
[patch.crates-io]
|
|
# TODO change back to this once the PR is merged
|
|
#halo2_proofs = { git = "https://github.com/appliedzkp/halo2.git", rev = "d3746109d7d38be53afc8ddae8fdfaf1f02ad1d7" }
|
|
halo2_proofs = { git = "https://github.com/powdr-org/halo2", branch = "kilic/shuffle" }
|
|
|
|
[profile.pr-tests]
|
|
inherits = "dev"
|
|
opt-level = 3
|
|
debug = "line-tables-only"
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
panic = 'unwind'
|
|
incremental = true # This is true because target is cached
|
|
codegen-units = 256
|