From f679928720ca1dd68f48a47a061e96fb6f40434e Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Wed, 13 Nov 2024 17:19:29 -0500 Subject: [PATCH] msrv: bump to Rust 1.73 This isn't strictly necessary, but I'm doing a minor version bump and might as well move the trains along. --- .github/workflows/ci.yml | 2 +- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19d4b12..e4b005c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: include: - build: pinned os: ubuntu-latest - rust: 1.65.0 + rust: 1.73.0 - build: stable os: ubuntu-latest rust: stable diff --git a/Cargo.toml b/Cargo.toml index d4ea63f..5b91a45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" categories = ["text-processing", "encoding"] exclude = ["/.github", "/scripts"] edition = "2021" -rust-version = "1.65" +rust-version = "1.73" resolver = "2" [workspace] diff --git a/README.md b/README.md index 38515e9..2c4d340 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ Unicode support. ### Minimum Rust version policy -This crate's minimum supported `rustc` version (MSRV) is `1.65`. +This crate's minimum supported `rustc` version (MSRV) is `1.73`. In general, this crate will be conservative with respect to the minimum supported version of Rust. MSRV may be bumped in minor version releases.