Bump MSRV to 1.65.0

This commit is contained in:
Jack Grigg 2023-06-13 20:21:58 +00:00
parent bccc4bc949
commit fdb41822fc
20 changed files with 42 additions and 28 deletions

View file

@ -7,6 +7,11 @@ and this project adheres to Rust's notion of
to 1.0.0 are beta releases.
## [Unreleased]
### Added
- `impl Eq for age_core::format::Stanza`
### Changed
- MSRV is now 1.65.0.
## [0.9.0] - 2022-10-27
### Changed

View file

@ -7,7 +7,7 @@ repository = "https://github.com/str4d/rage"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.59"
rust-version = "1.65"
[package.metadata.docs.rs]
all-features = true

View file

@ -68,7 +68,7 @@ impl<'a> AgeStanza<'a> {
/// recipient.
///
/// This is the owned type; see [`AgeStanza`] for the reference type.
#[derive(Debug, PartialEq)]
#[derive(Debug, PartialEq, Eq)]
pub struct Stanza {
/// A tag identifying this stanza type.
pub tag: String,

View file

@ -430,7 +430,7 @@ mod tests {
pipe.0 = pipe.0.split_off(n_out);
Ok(n_out)
} else {
(&mut buf[..n_in]).copy_from_slice(&pipe.0);
buf[..n_in].copy_from_slice(&pipe.0);
pipe.0.clear();
Ok(n_in)
}