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:
parent
a5cb228ee8
commit
109356f129
2 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
|||
Version NEXT, released 20??-??-??:
|
||||
* Improvements
|
||||
- This crate is now `no_std`, you can use it even on platforms which don’t provide the `std` crate.
|
||||
- Support getrandom 0.3 and 0.4.
|
||||
|
||||
Version 0.5.2, released 2024-07-22:
|
||||
* Improvements
|
||||
|
|
|
|||
|
|
@ -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 }
|
||||
|
|
|
|||
Loading…
Reference in a new issue