-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
28 lines (25 loc) · 901 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
25
26
27
28
[package]
name = "compressed_sigma"
version = "0.0.11"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Compressed Sigma Protocols and proofs of k-Out-Of-n Partial Knowledge"
[dependencies]
ark-serialize.workspace = true
ark-ff.workspace = true
ark-ec.workspace = true
ark-std.workspace = true
ark-poly.workspace = true
rayon = {workspace = true, optional = true}
digest.workspace = true
dock_crypto_utils = { version = "0.20.0", default-features = false, path = "../utils" }
[dev-dependencies]
blake2.workspace = true
ark-bls12-381.workspace = true
[features]
default = [ "std", "parallel" ]
std = [ "ark-ff/std", "ark-ec/std", "ark-std/std", "ark-serialize/std", "ark-poly/std"]
print-trace = [ "ark-std/print-trace" ]
parallel = [ "std", "ark-ff/parallel", "ark-ec/parallel", "ark-std/parallel", "ark-poly/parallel", "rayon" ]