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
[package]
name = "sha-crypt"
version = "0.5.0"
description = """
Pure Rust implementation of the SHA-crypt password hash based on SHA-512
as implemented by the POSIX crypt C library
"""
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/sha-crypt"
repository = "https://github.com/RustCrypto/password-hashes/tree/master/sha-crypt"
keywords = ["crypto", "hashing", "password", "phf"]
categories = ["authentication", "cryptography", "no-std"]
readme = "README.md"
edition = "2021"
rust-version = "1.60"

[dependencies]
sha2 = { version = "0.10", default-features = false }

# optional dependencies
rand = { version = "0.8", optional = true }
subtle = { version = "2", optional = true, default-features = false }
base64ct = "1.5.3"

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

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]