-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (39 loc) · 990 Bytes
/
Cargo.toml
File metadata and controls
46 lines (39 loc) · 990 Bytes
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
[workspace]
resolver = "2"
members = [
"lib",
# SP1
"sp1/program",
"sp1/script",
# Risc Zero
"risczero/host",
"risczero/methods",
"risczero/methods/guest",
# powdr
"powdr",
# Jolt
# "jolt/guest",
# "jolt/host",
]
[workspace.dependencies]
lib = { path = "./lib" }
[profile.risczero]
inherits = "release"
opt-level = 3
lto = true
debug = 1
[profile.sp1]
inherits = "release"
[profile.powdr]
inherits = "release"
# [profile.jolt]
# inherits = "release"
# debug = 1
# codegen-units = 1
# lto = "fat"
# removed before jolt is fixed
#jolt need this, you can delete if you dont plan to use Jolt in your benchmarks
#[patch.crates-io]
#ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "optimize/field-from-u64" }
#ark-ec = { git = "https://github.com/a16z/arkworks-algebra", branch = "optimize/field-from-u64" }
#ark-serialize = { git = "https://github.com/a16z/arkworks-algebra", branch = "optimize/field-from-u64" }