argon2 0.5.3

Pure Rust implementation of the Argon2 password hashing function with support for the Argon2d, Argon2i, and Argon2id algorithmic variants
Documentation
[dependencies.base64ct]
version = "1"

[dependencies.blake2]
default-features = false
version = "0.10.6"

[dependencies.password-hash]
optional = true
version = "0.5"

[dependencies.zeroize]
default-features = false
optional = true
version = "1"
[dev-dependencies.hex-literal]
version = "0.4"

[dev-dependencies.password-hash]
features = ["rand_core"]
version = "0.5"

[features]
alloc = ["password-hash/alloc"]
default = ["alloc", "password-hash", "rand"]
rand = ["password-hash/rand_core"]
simple = ["password-hash"]
std = ["alloc", "password-hash/std"]

[package]
authors = ["RustCrypto Developers"]
categories = ["authentication", "cryptography", "no-std"]
description = "Pure Rust implementation of the Argon2 password hashing function with support\nfor the Argon2d, Argon2i, and Argon2id algorithmic variants\n"
documentation = "https://docs.rs/argon2"
edition = "2021"
keywords = ["crypto", "hashing", "password", "phf"]
license = "MIT OR Apache-2.0"
name = "argon2"
readme = "README.md"
repository = "https://github.com/RustCrypto/password-hashes/tree/master/argon2"
rust-version = "1.65"
version = "0.5.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[target."cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))".dependencies.cpufeatures]
version = "0.2.12"