forked from sec-bit/plonk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (19 loc) · 827 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
[package]
name = "plonk"
description = "An experimental arkworks-based PLONK/PLOOKUP implementation"
license = "MIT/Apache-2.0"
version = "0.0.1"
edition = "2018"
[features]
default = ["std"]
std = ["ark-ff/std", "ark-std/std", "ark-poly/std", "ark-poly-commit/std"]
parallel = ["std", "rayon", "ark-ff/parallel", "ark-std/parallel", "ark-poly/parallel", "ark-poly-commit/parallel"]
[dependencies]
rayon = { version = "1", optional = true }
rand_core = { version = "0.5", optional = false }
ark-ff = { version = "0.3", default-features = false }
ark-std = { version = "0.3", default-features = false }
ark-poly = { version = "0.3", default-features = false }
ark-poly-commit = { version = "0.3", default-features = false }
[dev-dependencies]
ark-bn254 = {version = "0.3.0", default-features = false, features = ["curve"]}