forked from risc0/risc0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (45 loc) · 1.56 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
52
[workspace]
resolver = "2"
members = [
"risc0/bootstrap",
"risc0/build",
"risc0/circuit/rv32im",
"risc0/core",
"risc0/r0vm",
"risc0/sys",
"risc0/tools",
"risc0/zeroio",
"risc0/zeroio_derive",
"risc0/zkp",
"risc0/zkvm",
"risc0/zkvm/methods",
"risc0/zkvm/platform",
]
[workspace.package]
version = "0.12.0"
edition = "2021"
license = "Apache-2.0"
homepage = "https://risczero.com/"
repository = "https://github.com/risc0/risc0/"
[workspace.dependencies]
risc0-build = { version = "0.12.0", default-features = false, path = "risc0/build" }
risc0-circuit-rv32im = { version = "0.12.0", default-features = false, path = "risc0/circuit/rv32im" }
risc0-core = { version = "0.12.0", default-features = false, path = "risc0/core" }
risc0-sys = { version = "0.12.0", default-features = false, path = "risc0/sys" }
risc0-zeroio = { version = "0.12.0", default-features = false, path = "risc0/zeroio" }
risc0-zeroio-derive = { version = "0.12.0", default-features = false, path = "risc0/zeroio_derive" }
risc0-zkp = { version = "0.12.0", default-features = false, path = "risc0/zkp" }
risc0-zkvm = { version = "0.12.0", default-features = false, path = "risc0/zkvm" }
risc0-zkvm-platform = { version = "0.12.0", default-features = false, path = "risc0/zkvm/platform" }
[profile.bench]
lto = true
# Always optimize; otherwise tests take excessively long.
[profile.dev]
opt-level = 3
[profile.dev.build-override]
opt-level = 3
[profile.release]
debug = 1
lto = true
[profile.release.build-override]
opt-level = 3