-
Notifications
You must be signed in to change notification settings - Fork 417
/
Copy pathCargo.toml
49 lines (44 loc) · 1.14 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
[workspace]
resolver = "2"
members = [
"runtime",
"prover",
"vm",
"precompiles",
"common",
"core",
"sdk",
"examples",
"examples/legacy",
"tests/testing-framework",
"benchmarks",
"cli",
]
default-members = ["runtime", "prover", "vm", "precompiles", "common", "core"]
exclude = ["prover-benches"]
[workspace.package]
edition = "2021"
version = "0.3.1"
authors = ["The Nexus Team <hello@nexus.xyz>"]
homepage = "https://nexus.xyz/"
repository = "https://github.com/nexus-xyz/nexus-zkvm/"
keywords = ["nexus", "zero-knowledge", "zkvm", "cryptography", "proofs"]
categories = ["cryptography"]
publish = false
[workspace.dependencies]
clap = { version = "4.3", features = ["derive"] }
num-traits = "0.2"
num-derive = "0.4.2"
serde = { version = "1.0", features = ["derive"] }
stwo-prover = { git = "https://github.com/starkware-libs/stwo", rev = "a194fad" }
[profile.release]
codegen-units = 1
lto = true
[profile.bench]
inherits = "release"
debug = true
# This profile is used for CI tests. Optimized for faster compilation vs. absolute speed.
[profile.ci-test]
inherits = "release"
strip = "debuginfo"
lto = "thin"