From c7e6fdf58a08db7a1ebca239439b9e2ce84dae37 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 30 Jul 2024 05:05:09 +0000 Subject: [PATCH] Bump MSRV to 1.67 `time 0.3.35` has MSRV 1.67, and is a required update in order to fix breakage on Rust 1.80 and above. --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- README.md | 2 +- rust-toolchain.toml | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a112b..0e21c91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to Rust's notion of to 0.3.0 are beta releases. ## [Unreleased] +### Changed +- MSRV is now 1.67.0. ## [0.4.0] - 2023-04-09 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 95067e5..3aaf5f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["age", "cli", "encryption", "yubikey"] categories = ["command-line-utilities", "cryptography"] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.65" # MSRV +rust-version = "1.67" # MSRV [package.metadata.deb] extended-description = """\ diff --git a/README.md b/README.md index b28581d..daf6f61 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ which enables files to be encrypted to age identities stored on YubiKeys. | Environment | CLI command | |-------------|-------------| -| Cargo (Rust 1.65+) | `cargo install age-plugin-yubikey` | +| Cargo (Rust 1.67+) | `cargo install age-plugin-yubikey` | | Homebrew (macOS or Linux) | `brew install age-plugin-yubikey` | | Arch Linux | `pacman -S age-plugin-yubikey` | | Debian | [Debian package](https://github.com/str4d/age-plugin-yubikey/releases) | diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ce69938..4219db3 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.65.0" +channel = "1.67.0" components = ["clippy", "rustfmt"]