sasl: Support getrandom 0.3 and 0.4

getrandom 0.4.1 was released on 2026-02-03. sasl can use it without code
change.
This commit is contained in:
Tobias Deiminger 2026-03-03 10:51:53 +01:00
commit 109356f129
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,7 @@
Version NEXT, released 20??-??-??:
* Improvements
- This crate is now `no_std`, you can use it even on platforms which dont provide the `std` crate.
- Support getrandom 0.3 and 0.4.
Version 0.5.2, released 2024-07-22:
* Improvements

View file

@ -21,7 +21,7 @@ anonymous = ["getrandom"]
[dependencies]
base64 = { version = "0.22", optional = true }
getrandom = { version = "0.3", optional = true }
getrandom = { version = ">=0.3.0, <0.5", optional = true }
sha1 = { version = "0.10", optional = true }
sha2 = { version = "0.10", optional = true }
hmac = { version = "0.12", optional = true }