-
Notifications
You must be signed in to change notification settings - Fork 238
/
Cargo.toml
63 lines (52 loc) · 1.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
[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 }
ark_spartan = { path = "../spartan", package = "ark-spartan", default-features = false }
merlin = { version = "3.0.0" }
sha3 = { workspace = true }
rand_chacha = "0.3.1"
tracing = { version = "0.1", default-features = false }
rayon = { version = "1.8.0", optional = true }
ff = { version = "0.13.0" }
hex = { workspace = true }
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", tag = "v2023_04_20" }
halo2curves = { git = "https://github.com/privacy-scaling-explorations/halo2curves.git", rev = "8e4cb9f0c66c864e8ca25da07f50ae95f664a5b7" }
[features]
default = ["parallel"]
parallel = [
"rayon",
"ark-ff/parallel",
"ark-ec/parallel",
"ark-std/parallel",
"ark-crypto-primitives/parallel",
"ark-r1cs-std/parallel",
"ark_spartan/parallel",
]
[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"