[package]
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
categories = ["authentication"]
description = "Provides a function to validate a username & password on Linux, MacOS, and Windows"
edition = "2021"
homepage = "https://github.com/chipsenkbeil/pwcheck"
keywords = ["password", "security"]
license = "MIT OR Apache-2.0"
name = "pwcheck"
readme = "README.md"
repository = "https://github.com/chipsenkbeil/pwcheck"
rust-version = "1.64"
version = "0.2.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]
[target."cfg(target_os = \"linux\")".dependencies.pam-client]
default-features = false
version = "0.5.0"
[target."cfg(target_os = \"macos\")".dependencies.portable-pty]
version = "0.8.1"
[target."cfg(windows)".dependencies.windows]
features = ["Win32_Foundation", "Win32_Security"]
version = "0.48"