mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
Bump MSRV to 1.65.0
This commit is contained in:
parent
bccc4bc949
commit
fdb41822fc
20 changed files with 42 additions and 28 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue