Merge pull request #34 from tcharding/11-15-document-zeroise-msrv

Document the MSRV when zeroize feature is enabled
This commit is contained in:
Steven Roose 2023-02-23 03:28:00 +00:00 committed by GitHub
commit b668d05856
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,7 @@ rand_core = "0.4.0"
unicode-normalization = { version = "=0.1.9", optional = true } unicode-normalization = { version = "=0.1.9", optional = true }
rand = { version = "0.6.0", optional = true } rand = { version = "0.6.0", optional = true }
serde = { version = "1.0", default-features = false, optional = true } serde = { version = "1.0", default-features = false, optional = true }
# Enabling this feature raises the MSRV to 1.51
zeroize = {version = "1.5", features = ["zeroize_derive"], optional = true} zeroize = {version = "1.5", features = ["zeroize_derive"], optional = true}
[dev-dependencies] [dev-dependencies]

View File

@ -30,3 +30,4 @@ Use the `all-languages` feature to enable all languages.
This crate supports Rust v1.29 and up and works with `no_std`. This crate supports Rust v1.29 and up and works with `no_std`.
If you enable the `zeroize` feature the MSRV becomes 1.51