diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2026-04-21 19:10:24 +0200 |
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2026-04-21 19:10:24 +0200 |
| commit | e20975109d54cd787b0d9e8e88117965deb115a4 (patch) | |
| tree | 1dd2b48e239a98fdfb205334a4276d97e6c70e56 /wpa-psk | |
| parent | 6007d3154216351f4cafd2d019e57f95f255f708 (diff) | |
| download | wpa-psk-e20975109d54cd787b0d9e8e88117965deb115a4.tar.gz | |
Upgrade pbkdf2, sha1 crates
Diffstat (limited to 'wpa-psk')
| -rw-r--r-- | wpa-psk/CHANGELOG.md | 5 | ||||
| -rw-r--r-- | wpa-psk/Cargo.toml | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/wpa-psk/CHANGELOG.md b/wpa-psk/CHANGELOG.md index bc243b7..06dd85c 100644 --- a/wpa-psk/CHANGELOG.md +++ b/wpa-psk/CHANGELOG.md @@ -10,6 +10,11 @@ The format is based on [Keep A Changelog][] and this project adheres to ## Unreleased +### Changed + +- Upgraded `pbkdf2` crate +- Upgraded `sha1` crate + ## [0.2.3] - 2024-03-06 ### Changed diff --git a/wpa-psk/Cargo.toml b/wpa-psk/Cargo.toml index 59322e8..7e3c66a 100644 --- a/wpa-psk/Cargo.toml +++ b/wpa-psk/Cargo.toml @@ -12,5 +12,5 @@ categories = ["algorithms"] publish = true [dependencies] -pbkdf2 = { version = "0.12.2", default-features = false, features = ["hmac"] } -sha1 = { version = "0.10.6", default-features = false } +pbkdf2 = { version = "0.13.0", default-features = false, features = ["hmac"] } +sha1 = { version = "0.11.0", default-features = false } |