[package] name = "pqcrypto-sphincsplus-wasi" description = "Post-Quantum Signature Scheme sphincsplus with WASM/WASI support" readme = "README.md" version = "0.6.5" authors = ["Thom Wiggers "] edition = "2018" license = "MIT OR Apache-2.0" homepage = "https://github.com/rustpq/" repository = "https://github.com/john-sharratt/pqcrypto-wasi" keywords = ["cryptography", "post-quantum", "security"] categories = ["cryptography", "no-std"] [dependencies] pqcrypto-internals-wasi = { path = "../pqcrypto-internals", version = "0.2" } pqcrypto-traits-wasi = {path = "../pqcrypto-traits", version = "0.3.4", default-features = false} libc = "0.2.0" serde = { version = "1.0", features = ["derive"], optional = true } serde-big-array = { version = "0.3.2", features = ["const-generics"], optional = true } [features] default = ["avx2", "std"] avx2 = ["std"] std = ["pqcrypto-traits-wasi/std"] serialization = ["serde", "serde-big-array"] [dev-dependencies] rand = "0.7.0" [build-dependencies] cc = { version = "1.0", features = ["parallel"] } glob = "0.3.0" [badges] travis-ci = { repository = "rustpq/pqcrypto", branch = "master" } maintenance = { status = "actively-developed" }