From 79d63fa324b7e4c9138a25ba063cd5c6afbb6d74 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sat, 16 Dec 2023 08:45:03 -0800 Subject: [PATCH] Bump MSRV to 1.61 Due to crossbeam-rs/crossbeam#1037 Signed-off-by: John Nunley --- .github/workflows/ci.yml | 2 +- Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d4dac9..1a80d83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: matrix: # When updating this, the reminder to update the minimum supported # Rust version in Cargo.toml. - rust: ['1.59'] + rust: ['1.61'] steps: - uses: actions/checkout@v4 - name: Install Rust diff --git a/Cargo.toml b/Cargo.toml index ed0df83..3c5e59d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,10 +7,10 @@ version = "2.4.0" authors = [ "Stjepan Glavina ", "Taiki Endo ", - "John Nunley " + "John Nunley " ] edition = "2018" -rust-version = "1.59" +rust-version = "1.61" description = "Concurrent multi-producer multi-consumer queue" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/concurrent-queue"