[package]
edition = "2021"
name = "sarhash-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modular library for password hashing (Argon2) and strength verification (zxcvbn)."
readme = "README.md"
keywords = [
"password",
"hashing",
"argon2",
"security",
"strength",
]
categories = [
"cryptography",
"authentication",
]
license = "MIT"
repository = "https://github.com/saroj/sarhash-core"
[lib]
name = "sarhash_core"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[dependencies.argon2]
version = "0.5.3"
features = [
"std",
"rand",
]
[dependencies.rand]
version = "0.9.2"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.17"
[dependencies.zxcvbn]
version = "3.1.0"