[package]
edition = "2024"
name = "password_"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple and secure password hashing library based on Argon2 / 基于 Argon2 的简单安全密码哈希库"
homepage = "https://github.com/webc-site/npm/tree/main/password_"
readme = "README.md"
keywords = [
"password",
"hashing",
"argon2",
"security",
"crypto",
]
categories = [
"cryptography",
"authentication",
"development-tools",
"security",
"database",
]
license = "MulanPSL-2.0"
repository = "https://github.com/webc-site/npm.git"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
[lib]
name = "password_"
path = "src/lib.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.argon2]
version = "0.5.3"
[dependencies.rand]
version = "0.10.1"
[dependencies.static_init]
version = "1.0.4"
features = ["parking_lot"]
[dev-dependencies.aok]
version = "0.1.18"
[dev-dependencies.log]
version = "0.4.32"
[dev-dependencies.log_init]
version = "0.1.36"
[dev-dependencies.static_init]
version = "1.0.4"
features = ["parking_lot"]