summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 6480261e854f97eb3a15c5e11372307da12a2fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "wpa-psk"
version = "0.1.5"
authors = ["Stefan Kreutz <mail@skreutz.com>"]
edition = "2021"
description = "Compute the WPA-PSK of a Wi-FI SSID and passphrase"
readme = "README.md"
repository = "https://www.skreutz.com/scm/git/wpa-psk.git"
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.11.0", default-features = false }
hmac = { version = "0.12.1", default-features = false }
sha-1 = { version = "0.10.0", default-features = false }
clap = { version = "3.1.18", features = ["derive"] }

[dev-dependencies]
assert_cmd = "2.0.4"
Generated by cgit. See skreutz.com for my tech blog and contact information.