-
Notifications
You must be signed in to change notification settings - Fork 387
/
Cargo.toml
103 lines (96 loc) · 3.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[workspace]
members = [
"build",
"cli",
"core",
"derive",
"eval",
"helper",
"primitives",
"prover",
"recursion/circuit",
"recursion/compiler",
"recursion/core",
"recursion/derive",
"recursion/gnark-cli",
"recursion/gnark-ffi",
"recursion/program",
"sdk",
"zkvm/*",
]
exclude = ["examples/target"]
resolver = "2"
[workspace.package]
version = "1.0.0-rc.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/succinctlabs/sp1"
keywords = ["sp1", "succinct", "zero-knowledge", "zkvm"]
categories = ["cryptography"]
[profile.release]
opt-level = 3
[profile.bench]
opt-level = 3
[profile.fast]
inherits = "release"
debug = true
debug-assertions = true
[workspace.dependencies]
sp1-build = { path = "build", version = "1.0.0-rc.1" }
sp1-derive = { path = "derive", version = "1.0.0-rc.1" }
sp1-core = { path = "core", version = "1.0.0-rc.1" }
sp1-cli = { path = "cli", version = "1.0.0-rc.1", default-features = false }
sp1-eval = { path = "eval", version = "1.0.0-rc.1", default-features = false }
sp1-helper = { path = "helper", version = "1.0.0-rc.1", default-features = false }
sp1-primitives = { path = "primitives", version = "1.0.0-rc.1" }
sp1-prover = { path = "prover", version = "1.0.0-rc.1" }
sp1-recursion-compiler = { path = "recursion/compiler", version = "1.0.0-rc.1" }
sp1-recursion-core = { path = "recursion/core", version = "1.0.0-rc.1", default-features = false }
sp1-recursion-derive = { path = "recursion/derive", version = "1.0.0-rc.1", default-features = false }
sp1-recursion-gnark-ffi = { path = "recursion/gnark-ffi", version = "1.0.0-rc.1", default-features = false }
sp1-recursion-program = { path = "recursion/program", version = "1.0.0-rc.1", default-features = false }
sp1-recursion-circuit = { path = "recursion/circuit", version = "1.0.0-rc.1", default-features = false }
sp1-sdk = { path = "sdk", version = "1.0.0-rc.1" }
sp1-lib = { path = "zkvm/lib", version = "1.0.0-rc.1", default-features = false }
sp1-zkvm = { path = "zkvm/entrypoint", version = "1.0.0-rc.1", default-features = false }
p3-air = "0.1.3-succinct"
p3-field = "0.1.3-succinct"
p3-commit = "0.1.3-succinct"
p3-matrix = "0.1.3-succinct"
p3-baby-bear = { version = "0.1.3-succinct", features = ["nightly-features"] }
p3-util = "0.1.3-succinct"
p3-challenger = "0.1.3-succinct"
p3-dft = "0.1.3-succinct"
p3-fri = "0.1.3-succinct"
p3-goldilocks = "0.1.3-succinct"
p3-keccak = "0.1.3-succinct"
p3-keccak-air = "0.1.3-succinct"
p3-blake3 = "0.1.3-succinct"
p3-mds = "0.1.3-succinct"
p3-merkle-tree = "0.1.3-succinct"
p3-poseidon2 = "0.1.3-succinct"
p3-symmetric = "0.1.3-succinct"
p3-uni-stark = "0.1.3-succinct"
p3-maybe-rayon = "0.1.3-succinct"
p3-bn254-fr = "0.1.3-succinct"
# For local development.
# p3-air = { path = "../Plonky3/air" }
# p3-field = { path = "../Plonky3/field" }
# p3-commit = { path = "../Plonky3/commit" }
# p3-matrix = { path = "../Plonky3/matrix" }
# p3-baby-bear = { path = "../Plonky3/baby-bear" }
# p3-util = { path = "../Plonky3/util" }
# p3-challenger = { path = "../Plonky3/challenger" }
# p3-dft = { path = "../Plonky3/dft" }
# p3-fri = { path = "../Plonky3/fri" }
# p3-goldilocks = { path = "../Plonky3/goldilocks" }
# p3-keccak = { path = "../Plonky3/keccak" }
# p3-keccak-air = { path = "../Plonky3/keccak-air" }
# p3-blake3 = { path = "../Plonky3/blake3" }
# p3-mds = { path = "../Plonky3/mds" }
# p3-merkle-tree = { path = "../Plonky3/merkle-tree" }
# p3-poseidon2 = { path = "../Plonky3/poseidon2" }
# p3-symmetric = { path = "../Plonky3/symmetric" }
# p3-uni-stark = { path = "../Plonky3/uni-stark" }
# p3-maybe-rayon = { path = "../Plonky3/maybe-rayon" }
# p3-bn254-fr = { path = "../Plonky3/bn254-fr" }