Skip to content

Commit 3c7bebd

Browse files
committed
zeroize: update MSRV everywhere
1 parent c182558 commit 3c7bebd

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This repository contains various utility crates used in the RustCrypto project.
2121
| [`inout`] | [![crates.io](https://img.shields.io/crates/v/inout.svg)](https://crates.io/crates/inout) | [![Documentation](https://docs.rs/inout/badge.svg)](https://docs.rs/inout) | ![MSRV 1.56][msrv-1.56] | Custom reference types for code generic over in-place and buffer-to-buffer modes of operation. |
2222
| [`opaque-debug`] | [![crates.io](https://img.shields.io/crates/v/opaque-debug.svg)](https://crates.io/crates/opaque-debug) | [![Documentation](https://docs.rs/opaque-debug/badge.svg)](https://docs.rs/opaque-debug) | ![MSRV 1.41][msrv-1.41] | Macro for opaque `Debug` trait implementation |
2323
| [`wycheproof2blb`] | | | | Utility for converting [Wycheproof] test vectors to the blobby format |
24-
| [`zeroize`] | [![crates.io](https://img.shields.io/crates/v/zeroize.svg)](https://crates.io/crates/zeroize) | [![Documentation](https://docs.rs/zeroize/badge.svg)](https://docs.rs/zeroize) | ![MSRV 1.60][msrv-1.60] | Securely zero memory while avoiding compiler optimizations |
24+
| [`zeroize`] | [![crates.io](https://img.shields.io/crates/v/zeroize.svg)](https://crates.io/crates/zeroize) | [![Documentation](https://docs.rs/zeroize/badge.svg)](https://docs.rs/zeroize) | ![MSRV 1.61][msrv-1.61] | Securely zero memory while avoiding compiler optimizations |
2525

2626
## License
2727

@@ -53,6 +53,7 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
5353
[msrv-1.57]: https://img.shields.io/badge/rustc-1.57.0+-blue.svg
5454
[msrv-1.59]: https://img.shields.io/badge/rustc-1.59.0+-blue.svg
5555
[msrv-1.60]: https://img.shields.io/badge/rustc-1.60.0+-blue.svg
56+
[msrv-1.61]: https://img.shields.io/badge/rustc-1.61.0+-blue.svg
5657

5758
[//]: # (crates)
5859

zeroize/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ thereof, implemented in pure Rust with no usage of FFI or assembly.
3636

3737
## Minimum Supported Rust Version
3838

39-
Rust **1.60** or newer.
39+
Rust **1.61** or newer.
4040

4141
In the future, we reserve the right to change MSRV (i.e. MSRV is out-of-scope
4242
for this crate's SemVer guarantees), however when we do it will be accompanied by
@@ -64,7 +64,7 @@ dual licensed as above, without any additional terms or conditions.
6464
[docs-image]: https://docs.rs/zeroize/badge.svg
6565
[docs-link]: https://docs.rs/zeroize/
6666
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
67-
[rustc-image]: https://img.shields.io/badge/rustc-1.60+-blue.svg
67+
[rustc-image]: https://img.shields.io/badge/rustc-1.61+-blue.svg
6868
[build-image]: https://github.com/RustCrypto/utils/actions/workflows/zeroize.yml/badge.svg
6969
[build-link]: https://github.com/RustCrypto/utils/actions/workflows/zeroize.yml
7070

zeroize/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
//!
3232
//! ## Minimum Supported Rust Version
3333
//!
34-
//! Requires Rust **1.60** or newer.
34+
//! Requires Rust **1.61** or newer.
3535
//!
3636
//! In the future, we reserve the right to change MSRV (i.e. MSRV is out-of-scope
3737
//! for this crate's `SemVer` guarantees), however when we do it will be accompanied

0 commit comments

Comments
 (0)