forked from arkworks-rs/poly-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (66 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "poly-commit"
version = "0.2.2"
authors = [
"Alessandro Chiesa <[email protected]>",
"Mary Maller <[email protected]>",
"Yuncong Hu <[email protected]>",
"William Lin",
"Pratyush Mishra <[email protected]>",
"Noah Vesely <[email protected]>",
"Nicholas Ward <[email protected]>",
"Daniele Di Benedetto <[email protected]>",
"Maksym Vereshchak <[email protected]>",
"Ulrich Haboeck <[email protected]>",
"Luigi Varriale <[email protected]>",
"cronicc <[email protected]>"
]
description = "A library for constructing polynomial commitment schemes for use in zkSNARKs"
repository = "https://github.com/HorizenLabs/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/HorizenOfficial/ginger-lib", tag = "0.4.0", features = ["parallel", "fft", "derive"] }
bench-utils = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.4.0" }
rand = { version = "=0.8.4", default-features = false }
rand_chacha = { version = "=0.3.1", default-features = false }
rand_core = { version = "=0.6.3", default-features = false }
digest = "=0.8.1"
rayon = { version = "=1.5.1" }
derivative = { version = "=2.2.0" }
[dev-dependencies]
algebra = { git = "https://github.com/HorizenOfficial/ginger-lib", tag = "0.4.0", features = ["bls12_381", "jubjub", "bn_382", "bls12_377", "tweedle"] }
criterion = "=0.3.5"
rand_xorshift = "=0.3.0"
blake2 = { version = "=0.8.1", default-features = false }
[features]
asm = [ "algebra/llvm_asm" ]
print-trace = [ "bench-utils/print-trace" ]
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
debug-assertions = false
debug = false
[profile.bench]
opt-level = 3
rpath = false
lto = "thin"
incremental = true
debug-assertions = false
debug = false
[profile.dev]
opt-level = 0
[profile.test]
opt-level = 3
lto = "thin"
incremental = true
debug-assertions = true
debug = true
# Uncomment these lines for local paths
#[patch.'https://github.com/HorizenOfficial/ginger-lib.git']
#algebra = { path = '../ginger-lib/algebra' }
#bench-utils = { path = '../ginger-lib/bench-utils' }