sha-crypt 0.5.0

Pure Rust implementation of the SHA-crypt password hash based on SHA-512 as implemented by the POSIX crypt C library
Documentation
[dependencies.base64ct]
version = "1.5.3"

[dependencies.rand]
optional = true
version = "0.8"

[dependencies.sha2]
default-features = false
version = "0.10"

[dependencies.subtle]
default-features = false
optional = true
version = "2"

[features]
default = ["simple"]
simple = ["rand", "std", "subtle"]
std = []

[package]
authors = ["RustCrypto Developers"]
categories = ["authentication", "cryptography", "no-std"]
description = "Pure Rust implementation of the SHA-crypt password hash based on SHA-512\nas implemented by the POSIX crypt C library\n"
documentation = "https://docs.rs/sha-crypt"
edition = "2021"
keywords = ["crypto", "hashing", "password", "phf"]
license = "MIT OR Apache-2.0"
name = "sha-crypt"
readme = "README.md"
repository = "https://github.com/RustCrypto/password-hashes/tree/master/sha-crypt"
rust-version = "1.60"
version = "0.5.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]