-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
35 lines (32 loc) · 1.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
[package]
name = "verifiable_encryption"
version = "0.1.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Verifiable encryption schemes - Encryption of discrete log from DKG-in-the-head"
keywords = ["verifiable-encrypt", "DKG-in-the-head"]
[dependencies]
ark-serialize.workspace = true
ark-ff.workspace = true
ark-ec.workspace = true
ark-std.workspace = true
digest.workspace = true
rayon = {workspace = true, optional = true}
serde.workspace = true
serde_with.workspace = true
zeroize.workspace = true
itertools.workspace = true
dock_crypto_utils = { version = "0.21.0", default-features = false, path = "../utils" }
secret_sharing_and_dkg = { version = "0.14.0", default-features = false, path = "../secret_sharing_and_dkg" }
[dev-dependencies]
blake2.workspace = true
sha3.workspace = true
ark-bls12-381.workspace = true
ark-secp256r1.workspace = true
[features]
default = [ "parallel" ]
std = [ "ark-ff/std", "ark-ec/std", "ark-std/std", "ark-serialize/std", "dock_crypto_utils/std", "serde/std", "secret_sharing_and_dkg/std"]
print-trace = [ "ark-std/print-trace", "dock_crypto_utils/print-trace" ]
parallel = [ "std", "ark-ff/parallel", "ark-ec/parallel", "ark-std/parallel", "rayon", "dock_crypto_utils/parallel", "secret_sharing_and_dkg/parallel" ]