forked from arkworks-rs/poly-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1.29 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
[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>",
"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 = { git = "https://github.com/scipr-lab/zexe/", features = [ "parallel" ] }
ff-fft = { git = "https://github.com/scipr-lab/zexe/" }
bench-utils = { git = "https://github.com/scipr-lab/zexe/" }
rand_core = { version = "0.5" }
rayon = { version = "1" }
derivative = { version = "1" }
[dev-dependencies]
rand = { version = "0.7" }
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
debug = true
[profile.test]
opt-level = 3
debug-assertions = true
incremental = true
debug = true
[features]
print-trace = [ "bench-utils/print-trace" ]