-
Notifications
You must be signed in to change notification settings - Fork 181
/
Cargo.toml
55 lines (48 loc) · 1.2 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
[package]
name = "blst"
version = "0.3.2"
authors = ["sean-sn <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "Bindings for blst BLS12-381 library"
repository = "https://github.com/supranational/blst"
readme = "README.md"
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"rustfmt.toml",
"blst/src/*.c",
"blst/src/*.h",
"blst/build/**",
"blst/src/asm/*.pl",
"blst/bindings/blst.h",
"blst/bindings/blst_aux.h",
]
[features]
# By default, compile with ADX extension if the host supports it.
# Binary can be executed on systems similar to the host.
default = []
# Compile in portable mode, without ISA extensions.
# Binary can be executed on all systems.
portable = []
# Enable ADX even if the host CPU doesn't support it.
# Binary can be executed on Broadwell+ and Ryzen+ systems.
force-adx = []
[build-dependencies]
cc = "1.0"
glob = "0.3"
[dependencies]
threadpool = "^1.8.1"
zeroize = { version = "^1.1", features = ["zeroize_derive"] }
[dev-dependencies]
rand = "0.7"
rand_chacha = "0.2"
criterion = "0.3"
[[bench]]
name = "blst_benches"
harness = false
[profile.release]
#opt-level = 3
[badges]
maintenance = { status = "actively-developed" }