-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
38 lines (33 loc) · 916 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
35
36
37
38
[package]
name = "blst-msm"
version = "0.1.0"
edition = "2018"
[features]
# By default, compile with ADX extension if the host supports it.
# Binary can be executed on systems similar to the host.
default = [ "quiet" ]
# Compile in portable mode, without ISA extensions.
# Binary can be executed on all systems.
portable = [ "blst/portable" ]
# Enable ADX even if the host CPU doesn't support it.
# Binary can be executed on Broadwell+ and Ryzen+ systems.
force-adx = [ "blst/force-adx" ]
bls12_377 = ["ark-bls12-377/curve"]
quiet = []
[dependencies]
blst = "^0"
rand = "^0"
rand_chacha = "^0"
ark-std = "0.3.0"
ark-ff = "0.3.0"
ark-ec = { version = "0.3.0", features = [ "parallel" ] }
ark-bls12-377 = { version = "0.3.0" }
[build-dependencies]
cc = "^1.0.70"
which = "^4.0"
[dev-dependencies]
criterion = { version = "0.3", features = [ "html_reports" ] }
rayon = "1.5"
[[bench]]
name = "msm"
harness = false