forked from powdr-labs/powdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (45 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[workspace]
resolver = "2"
members = [
"powdr",
"powdr-test",
"number",
"parser",
"cli",
"executor",
"riscv",
"parser-util",
"pil-analyzer",
"pipeline",
"pilopt",
"asm-to-pil",
"halo2",
"backend",
"ast",
"analysis",
"linker",
"asm-utils",
"airgen",
"riscv-executor",
"schemas",
]
exclude = [ "riscv-runtime" ]
[workspace.package]
version = "0.1.0-alpha.1"
edition = "2021"
license = "MIT"
homepage = "https://powdr.org"
repository = "https://github.com/powdr-labs/powdr"
[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
# This can be removed when upgrading to the next release of Halo2, because this has been merged:
# https://github.com/privacy-scaling-explorations/halo2/pull/292
[patch."https://github.com/privacy-scaling-explorations/halo2"]
halo2_proofs = { git = "https://github.com/georgwiese/halo2", branch = "make-emit-public-v0.3.0", features = ["circuit-params"] }