-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
36 lines (31 loc) · 951 Bytes
/
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
[package]
name = "multifolding-poc"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ark-bls12-381 = "0.4.0"
ark-ff = {version="^0.4.0", features=["parallel"]}
ark-poly = {version="^0.4.0", features=["parallel"]}
ark-ec = "^0.4.0"
ark-serialize = "0.4.2"
ark-std = { version = "^0.4.0", features=["parallel"] }
displaydoc = "0.2.4"
rayon = "1.7.0"
thiserror = "1.0.40"
# import for poly_iop & transcript
subroutines = {git="https://github.com/EspressoSystems/hyperplonk"}
transcript = {git="https://github.com/EspressoSystems/hyperplonk"}
[features]
# default = [ "parallel", "print-trace" ]
default = ["parallel"]
# extensive sanity checks that are useful for debugging
extensive_sanity_checks = [ ]
parallel = [
"ark-std/parallel",
"ark-ff/parallel",
"ark-poly/parallel",
]
print-trace = [
"ark-std/print-trace",
]