This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
120 lines (101 loc) · 3.18 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
edition = "2018"
name = "ark-poly-commit"
version = "0.3.0"
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]>", "arkworks contributors"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
description = "A library for constructing polynomial commitment schemes for use in zkSNARKs"
documentation = "https://docs.rs/ark-poly-commit/"
keywords = ["cryptography", "commitments", "elliptic-curves", "pairing"]
categories = ["cryptography"]
license = "MIT/Apache-2.0"
repository = "https://github.com/arkworks-rs/poly-commit"
[profile.release]
opt-level = 3
lto = "thin"
debug = true
incremental = true
[dependencies]
colored = "2.0.0"
threadpool = "1.0"
[profile.test]
opt-level = 3
debug = true
debug-assertions = true
incremental = true
[dependencies.ark-ec]
version = "^0.3.0"
default-features = false
[dependencies.ark-ff]
version = "^0.3.0"
default-features = false
[dependencies.ark-nonnative-field]
version = "^0.3.0"
optional = true
default-features = false
[dependencies.ark-poly]
version = "^0.3.0"
default-features = false
[dependencies.ark-r1cs-std]
version = "^0.3.0"
optional = true
default-features = false
[dependencies.ark-relations]
version = "^0.3.0"
optional = true
default-features = false
[dependencies.ark-serialize]
version = "^0.3.0"
features = ["derive"]
default-features = false
[dependencies.ark-std]
version = "^0.3.0"
default-features = false
[dependencies.derivative]
version = "2"
features = ["use_core"]
[dependencies.digest]
version = "0.9"
[dependencies.hashbrown]
version = "0.9"
optional = true
[dependencies.rayon]
version = "1"
optional = true
[dependencies.tracing]
version = "0.1"
features = ["attributes"]
default-features = false
[dev-dependencies.ark-bls12-377]
version = "^0.3.0"
features = ["curve"]
default-features = false
[dev-dependencies.ark-bls12-381]
version = "^0.3.0"
features = ["curve"]
default-features = false
[dev-dependencies.ark-ed-on-bls12-381]
version = "^0.3.0"
default-features = false
[dev-dependencies.blake2]
version = "0.9"
default-features = false
[features]
default = ["asm", "std", "parallel"]
asm = ["ark-ff/asm"]
profile = []
parallel = ["std", "ark-ff/parallel", "ark-ec/parallel", "ark-poly/parallel", "ark-std/parallel", "rayon"]
print-trace = ["ark-std/print-trace"]
r1cs = ["ark-relations", "ark-r1cs-std", "ark-nonnative-field", "hashbrown"]
std = ["ark-ff/std", "ark-ec/std", "ark-nonnative-field/std", "ark-poly/std", "ark-std/std", "ark-relations/std", "ark-serialize/std"]