[package]
name = "blst"
version = "0.3.13"
authors = ["sean-sn <sean@supranational.net>"]
edition = "2018"
license = "Apache-2.0"
description = "Bindings for blst BLS12-381 library"
repository = "https://github.com/supranational/blst"
readme = "README.md"
categories = ["cryptography"]
keywords = ["crypto", "bls", "signature", "asm", "wasm"]
include = [
"**/*.rs",
"/Cargo.toml",
"/README.md",
"/rustfmt.toml",
"/blst/src/*.c",
"/blst/src/*.h*",
"/blst/build/**",
"/blst/bindings/blst.h",
"/blst/bindings/blst_aux.h",
"/blst/bindings/blst.hpp",
]
links = "blst"
[features]
default = []
portable = []
force-adx = []
no-threads = []
serde-secret = ["serde"]
[build-dependencies]
cc = "1.0"
[target.'cfg(target_env = "msvc")'.build-dependencies]
glob = "0.3"
[dependencies]
zeroize = { version = "^1.1", features = ["zeroize_derive"] }
serde = { version = "1.0.152", optional = true }
[target.'cfg(not(any(target_arch="wasm32", target_os="none", target_os="unknown", target_os="uefi")))'.dependencies]
threadpool = "^1.8.1"
[dev-dependencies]
rand = "0.8"
rand_chacha = "0.3"
rmp-serde = "1.1.1"
[target.'cfg(any(unix, windows))'.dev-dependencies]
criterion = "0.3"
[[bench]]
name = "blst_benches"
harness = false
[profile.release]
[badges]
maintenance = { status = "actively-developed" }