-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
69 lines (61 loc) · 1.56 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
[package]
name = "fde"
version = "0.1.0"
edition = "2021"
[profile.dev]
opt-level = 3
[features]
default = ["std", "parallel"]
std = [
"ark-crypto-primitives/std",
"ark-ec/std",
"ark-ff/std",
"ark-poly/std",
"ark-poly-commit/std",
"ark-serialize/std",
"ark-std/std",
]
parallel = [
"ark-crypto-primitives/parallel",
"ark-ec/parallel",
"ark-ff/parallel",
"ark-poly/parallel",
"ark-poly-commit/parallel",
"ark-std/parallel",
"rayon"
]
[dependencies]
ark-crypto-primitives = { version = "0.4", default-features = false, features = ["signature"] }
ark-ec = { version = "0.4", default-features = false }
ark-ff = { version = "0.4", default-features = false }
ark-poly = { version = "0.4", default-features = false }
ark-poly-commit = { version = "0.4", default-features = false }
ark-serialize = { version = "0.4", default-features = false }
ark-std = { version = "0.4", default-features = false }
num-bigint = { version = "0.4", features = ["rand"] }
num-integer = "0.1"
num-prime = "0.4"
digest = { version = "0.10", default-features = false }
rayon = { version = "1.8", optional = true }
thiserror = "1"
[dev-dependencies]
ark-bls12-381 = "0.4"
ark-secp256k1 = "0.4"
criterion = "0.5"
sha3 = "0.10"
[[bench]]
name = "kzg-paillier-veck"
path = "benches/kzg_paillier.rs"
harness = false
[[bench]]
name = "kzg-elgamal-veck"
path = "benches/kzg_elgamal.rs"
harness = false
[[bench]]
name = "split-elgamal-encryption"
path = "benches/elgamal.rs"
harness = false
[[bench]]
name = "range-proof"
path = "benches/range_proof.rs"
harness = false