mirror of
https://github.com/RustCrypto/password-hashes.git
synced 2026-01-25 04:06:23 +00:00
This upgrades `rand_core` to v0.10 prereleases and depends directly on `getrandom` for access to the system RNG. It additionally bumps other crates like `digest` and `blake2` which use the new `crypto-common` with an upgraded `rand_core`. This required restoring some functionality in `blake2` which was used by `argon2`: https://github.com/RustCrypto/hashes/pull/754 This is currently referenced as a git branch until we decide if this is a permanent solution for `argon2` or not, so as to unblock the upgrade.
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "yescrypt"
|
|
version = "0.1.0-pre.4"
|
|
description = "Pure Rust implementation of the yescrypt password-based key derivation function"
|
|
authors = ["RustCrypto Developers"]
|
|
license = "MIT OR Apache-2.0"
|
|
documentation = "https://docs.rs/yescrypt"
|
|
homepage = "https://github.com/RustCrypto/password-hashes/tree/master/yescrypt"
|
|
repository = "https://github.com/RustCrypto/password-hashes"
|
|
keywords = ["crypto", "hashing", "password", "phf"]
|
|
categories = ["authentication", "cryptography", "no-std"]
|
|
readme = "README.md"
|
|
edition = "2024"
|
|
rust-version = "1.85"
|
|
|
|
[dependencies]
|
|
hmac = { version = "0.13.0-rc.3", default-features = false }
|
|
pbkdf2 = { version = "0.13.0-rc.1", path = "../pbkdf2" }
|
|
salsa20 = { version = "0.11.0-rc.2", default-features = false }
|
|
sha2 = { version = "0.11.0-rc.3", default-features = false }
|
|
|
|
# optional dependencies
|
|
mcf = { version = "0.2", optional = true, default-features = false, features = ["alloc", "base64"] }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "1"
|
|
|
|
[features]
|
|
default = ["simple"]
|
|
simple = ["dep:mcf"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|