-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
57 lines (53 loc) · 3.19 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
[package]
name = "proof_system"
version = "0.31.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Proof system to comprise various cryptographic primitives"
[lib]
doctest = false
path = "src/lib.rs"
[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
ark-groth16.workspace = true
ark-r1cs-std.workspace = true
ark-relations.workspace = true
zeroize.workspace = true
itertools.workspace = true
chacha20poly1305 = {version = "0.10.1", default-features = false}
sha3.workspace = true
bbs_plus = { version = "0.22.0", default-features = false, path = "../bbs_plus" }
schnorr_pok = { version = "0.20.0", default-features = false, path = "../schnorr_pok" }
vb_accumulator = { version = "0.26.0", default-features = false, path = "../vb_accumulator" }
dock_crypto_utils = { version = "0.20.0", default-features = false, path = "../utils" }
saver = { version = "0.18.0", default-features = false, path = "../saver" }
coconut-crypto = { version = "0.11.0", default-features = false, path = "../coconut" }
merlin = { package = "dock_merlin", version = "3.0.0", default-features = false, path = "../merlin" }
legogroth16 = { version = "0.15.0", default-features = false, features = ["circom", "aggregation"], path = "../legogroth16" }
bulletproofs_plus_plus = { version = "0.6.0", default-features = false, path = "../bulletproofs_plus_plus" }
smc_range_proof = { version = "0.6.0", default-features = false, path = "../smc_range_proof" }
short_group_sig = { version = "0.4.0", default-features = false, path = "../short_group_sig" }
kvac = { version = "0.5.0", default-features = false, path = "../kvac" }
verifiable_encryption = { version = "0.1.0", default-features = false, path = "../verifiable_encryption" }
[dev-dependencies]
ark-bls12-381.workspace = true
blake2.workspace = true
serde_json = "1.0"
rmp-serde = "1.0"
test_utils = { default-features = false, path = "../test_utils" }
[features]
default = ["parallel"]
std = ["ark-ff/std", "ark-ec/std", "ark-std/std", "ark-serialize/std", "schnorr_pok/std", "dock_crypto_utils/std", "serde/std", "saver/std", "ark-groth16/std", "legogroth16/std", "ark-r1cs-std/std", "ark-relations/std", "merlin/std", "bbs_plus/std", "vb_accumulator/std", "coconut-crypto/std", "bulletproofs_plus_plus/std", "smc_range_proof/std", "short_group_sig/std", "kvac/std", "verifiable_encryption/std"]
print-trace = ["ark-std/print-trace", "schnorr_pok/print-trace", "bbs_plus/print-trace", "vb_accumulator/print-trace", "dock_crypto_utils/print-trace"]
parallel = ["std", "ark-ff/parallel", "ark-ec/parallel", "ark-std/parallel", "rayon", "schnorr_pok/parallel", "bbs_plus/parallel", "vb_accumulator/parallel", "saver/parallel", "ark-groth16/parallel", "legogroth16/parallel", "ark-r1cs-std/parallel", "dock_crypto_utils/parallel", "coconut-crypto/parallel", "bulletproofs_plus_plus/parallel", "smc_range_proof/parallel", "short_group_sig/parallel", "kvac/parallel", "verifiable_encryption/parallel"]
wasmer-js = ["legogroth16/wasmer-js"]
wasmer-sys = ["legogroth16/wasmer-sys"]