-
Notifications
You must be signed in to change notification settings - Fork 106
/
Cargo.toml
51 lines (48 loc) · 1.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
[package]
name = "jf-utils"
description = "Utilities for Jellyfish cryptographic library"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
[dependencies]
ark-ec = { workspace = true }
ark-ed-on-bls12-377 = "0.4.0"
ark-ed-on-bls12-381 = "0.4.0"
ark-ff = { workspace = true }
ark-poly = { workspace = true }
ark-serialize = { workspace = true }
ark-std = { workspace = true }
digest = { workspace = true }
displaydoc = { workspace = true }
rand_chacha = { workspace = true }
rayon = { version = "1.5.0", optional = true }
serde = { workspace = true }
sha2 = { workspace = true }
tagged-base64 = { workspace = true }
[dev-dependencies]
ark-bls12-377 = { workspace = true }
ark-bls12-381 = { workspace = true }
ark-bn254 = { workspace = true }
ark-ed-on-bn254 = "0.4.0"
criterion = "0.5.1"
[features]
default = []
std = [
"ark-ff/std",
"ark-std/std",
"ark-ec/std",
"ark-serialize/std",
"ark-poly/std",
"digest/std",
"rand_chacha/std",
"serde/std",
"sha2/std",
]
parallel = [
"ark-ff/parallel",
"ark-std/parallel",
"ark-ec/parallel",
"dep:rayon",
]