scanpw 1.0.0

Read a password from standard input
Documentation
[package]
name = "scanpw"
version = "1.0.0"
authors = ["Charles Hall <charles@computer.surgery>"]
edition = "2021"
description = "Read a password from standard input"
homepage = "https://or.computer.surgery/charles/scanpw"
repository="https://or.computer.surgery/charles/scanpw"
documentation = "https://docs.rs/scanpw"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = [
    "input",
    "terminal",
    "stdin",
    "read",
    "password",
]
categories = [
    "command-line-interface",
    "command-line-utilities"
]

[dependencies]
crossterm = "0.26"
thiserror = "1.0.40"

[target.'cfg(unix)'.dependencies]
nix = "0.26"

[target.'cfg(windows)'.dependencies.windows]
version = "0.48"
features = [
    "Win32_Foundation",
    "Win32_System_Console",
    "Win32_System_Threading",
]

[dev-dependencies]
scanln = "0.1"