-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 912 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
29
30
31
32
33
34
[package]
name = "adkg-vrf"
version = "0.1.0"
edition = "2021"
authors = ["Alistair Stewart", "Sergey Vasilyev <swasilyev@gmail.com>"]
[dependencies]
ark-std = { version = "0.5", default-features = false }
ark-ff = { version = "0.5", default-features = false }
ark-ec = { version = "0.5", default-features = false }
ark-poly = { version = "0.5", default-features = false }
ark-serialize = { version = "0.5", default-features = false, features = ["derive"] }
ark-transcript = { git = "https://github.com/w3f/ark-transcript" }
ark-bls12-381 = { version = "0.5", default-features = false, features = ["curve"] }
hashbrown = "0.15"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "straus"
harness = false
[features]
default = ["std"]
print-trace = ["ark-std/print-trace"]
std = [
"ark-std/std",
"ark-ff/std",
"ark-ec/std",
"ark-poly/std",
"ark-serialize/std",
"ark-transcript/std"
]