forked from arkworks-rs/poly-commit
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (52 loc) · 1.89 KB
/
Cargo.toml
File metadata and controls
59 lines (52 loc) · 1.89 KB
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
[package]
name = "poly-commit"
version = "0.1.0"
authors = [
"Alessandro Chiesa <alexch@berkeley.edu>",
"Mary Maller <mary.maller.15@ucl.ac.uk>",
"Yuncong Hu <huyuncongh@gmail.com>",
"William Lin",
"Pratyush Mishra <pratyush@berkeley.edu>",
"Noah Vesely <noah.vesely.18@ucl.ac.uk>",
"Nicholas Ward <npward@berkeley.edu>",
]
description = "A library for constructing polynomial commitment schemes for use in zkSNARKs"
repository = "https://github.com/scipr/poly-commit"
documentation = "https://docs.rs/poly-commit/"
keywords = ["cryptography", "polynomial commitments", "elliptic curves", "pairing"]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
edition = "2018"
[dependencies]
algebra-core = { git = "https://github.com/KZen-networks/zexe/", default-features = false }
ff-fft = { git = "https://github.com/KZen-networks/zexe/", default-features = false}
bench-utils = { git = "https://github.com/KZen-networks/zexe/"}
rand_core = { version = "0.5", default-features = false }
rayon = { version = "1", optional = true }
derivative = { version = "2", features = [ "use_core" ] }
[dependencies.curv]
git = "https://github.com/KZen-networks/curv"
tag = "v0.2.6"
features = ["ec_bls12_381"]
[dependencies.class_group]
git = "https://github.com/KZen-networks/class"
tag = "v0.4.13"
[dev-dependencies]
rand = { version = "0.7", default-features = false }
algebra = { git = "https://github.com/KZen-networks/zexe/", default-features = false, features = ["full"] }
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
debug = true
[profile.test]
opt-level = 3
debug-assertions = true
incremental = true
debug = true
[features]
default = ["std", "parallel"]
std = [ "algebra-core/std", "ff-fft/std", ]
print-trace = [ "bench-utils/print-trace" ]
parallel = [ "std", "algebra-core/parallel", "ff-fft/parallel", "rayon" ]