[package] name = "balloon-hash" version = "0.5.0-pre.1" description = "Pure Rust implementation of the Balloon password hashing function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" documentation = "https://docs.rs/balloon-hash" homepage = "https://github.com/RustCrypto/password-hashes/tree/master/balloon-hash" repository = "https://github.com/RustCrypto/password-hashes" keywords = ["crypto", "hashing", "password", "phf"] categories = ["authentication", "cryptography", "no-std"] readme = "README.md" edition = "2021" rust-version = "1.73" [dependencies] digest = { version = "=0.11.0-pre.9", default-features = false } crypto-bigint = { version = "0.6.0-rc.2", default-features = false, features = ["hybrid-array"] } # optional dependencies password-hash = { version = "0.6.0-rc.0", default-features = false, optional = true } rayon = { version = "1.7", optional = true } zeroize = { version = "1", default-features = false, optional = true } [dev-dependencies] hex-literal = "0.4" sha2 = "=0.11.0-pre.4" [features] default = ["alloc", "password-hash", "rand"] alloc = ["password-hash/alloc"] parallel = ["rayon", "std"] rand = ["password-hash/rand_core"] std = ["alloc", "password-hash/std"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]