forked from glamperd/small-powers-of-tau
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (31 loc) · 1.02 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
[package]
name = "small-powers-of-tau"
version = "0.2.0"
edition = "2021"
authors = ["Kevaundray Wedderburn"]
description = "Small Powers of Tau"
repository = "https://github.com/crate-crypto/small-powers-of-tau"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand_core = { version = "0.6.3", features = ["getrandom"] }
rand_chacha = { version = "0.3.1" }
rand = { version = "0.8.4" }
rayon = { version = "1.0", optional = true }
itertools = "0.10.1"
ark-ec = { version = "0.3", default-features = false }
ark-ff = { version = "0.3.0", default-features = false }
ark-bls12-381 = "0.3.0"
ark-std = "0.3.0"
zeroize = { version = "1.5.7", features = ["zeroize_derive"] }
hex = "0.4.3"
serde = { version = "1", features = ["derive"] }
[dev-dependencies]
criterion = "0.3"
serde_json = "1.0.85"
[[bench]]
name = "benchmark"
harness = false
[features]
default = ["parallel", "asm"]
parallel = ["ark-ff/parallel", "ark-ec/parallel", "rayon", "ark-std/parallel"]
asm = ["ark-ff/asm"]