[package] name = "wpa-psk" version = "0.1.3" authors = ["Stefan Kreutz "] edition = "2021" description = "Compute the WPA-PSK of a Wi-FI SSID and passphrase" readme = "README.md" repository = "https://git.skreutz.com/wpa-psk-rs" license = "MIT OR Apache-2.0" keywords = ["wifi", "wpa", "password", "hash"] categories = ["command-line-utilities", "algorithms"] publish = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] pbkdf2 = { version = ">= 0.10, < 0.12", default-features = false } hmac = { version = "0.12", default-features = false } sha-1 = { version = "0.10", default-features = false } clap = { version = "3", features = ["derive"] }