bcrypt 0.16.0

Easily hash and verify passwords using bcrypt
Documentation
[badges.maintenance]
status = "passively-maintained"

[dependencies.base64]
default-features = false
version = "0.22"

[dependencies.blowfish]
features = ["bcrypt"]
version = "0.9"

[dependencies.getrandom]
default-features = false
optional = true
version = "0.2"

[dependencies.subtle]
default-features = false
version = "2.4.1"

[dependencies.zeroize]
optional = true
version = "1.5.4"

[dev-dependencies.quickcheck]
default-features = false
version = "1"

[features]
alloc = ["base64/alloc", "getrandom"]
default = ["std", "zeroize"]
js = ["getrandom/js"]
std = ["getrandom/std", "base64/std"]

[lib]
name = "bcrypt"
path = "src/lib.rs"

[package]
authors = ["Vincent Prouillet <hello@prouilletvincent.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "Easily hash and verify passwords using bcrypt"
edition = "2021"
homepage = "https://github.com/Keats/rust-bcrypt"
include = ["src/**/*", "LICENSE", "README.md"]
keywords = ["bcrypt", "password", "web", "hash"]
license = "MIT"
name = "bcrypt"
readme = "README.md"
repository = "https://github.com/Keats/rust-bcrypt"
version = "0.16.0"