forked from nexus-xyz/nexus-zkvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (60 loc) · 1.84 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
[package]
name = "nexus-nova"
authors = { workspace = true }
version = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
publish = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
[dependencies]
ark-ff.workspace = true
ark-ec.workspace = true
ark-std.workspace = true
ark-crypto-primitives.workspace = true
ark-relations.workspace = true
ark-r1cs-std.workspace = true
ark-serialize.workspace = true
ark-poly.workspace = true
ark-poly-commit = { workspace = true, optional = true }
ark_spartan = { path = "../spartan", package = "ark-spartan", optional = true }
merlin = { version = "3.0.0", optional = true }
sha3 = { version = "0.10", default-features = false }
rand_chacha = "0.3.1"
tracing = { version = "0.1", default-features = false }
rayon = { version = "1.8.0", optional = true }
ff = { version = "0.13.0", optional = true }
hex = { version = "0.4.3", optional = true }
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", tag = "v2023_04_20", optional = true }
halo2curves = { git = "https://github.com/privacy-scaling-explorations/halo2curves.git", rev = "8e4cb9f0c66c864e8ca25da07f50ae95f664a5b7", optional = true }
[features]
default = ["parallel", "spartan"]
parallel = [
"rayon",
"ark-ff/parallel",
"ark-ec/parallel",
"ark-std/parallel",
"ark-crypto-primitives/parallel",
"ark-r1cs-std/parallel",
]
spartan = [
"ark-poly-commit",
"ark_spartan",
"merlin",
"ff",
"hex",
"halo2_proofs",
"halo2curves",
]
[dev-dependencies]
ark-test-curves.workspace = true
ark-pallas.workspace = true
ark-vesta.workspace = true
ark-bn254.workspace = true
ark-grumpkin.workspace = true
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
"ansi",
] }
zstd = "0.13.0"