From 5978e4826c491000bed1ebe4967ba0900a6ffd05 Mon Sep 17 00:00:00 2001 From: Vitali Lovich Date: Thu, 14 Mar 2024 10:29:31 -0700 Subject: [PATCH] Bump rust versions to fix CI failures Latest rayon requires at least Rust 1.63, regex requires 1.65, and std::hint::black_box was stabilized in 1.66, so bump that. Also bump the current stable version to validate with a newer Rust since presumably that's the intention of the second version. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c7fc43f..d4bd33a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,8 +17,8 @@ jobs: strategy: matrix: rust: - - "1.60.0" - - "1.65.0" + - "1.66.0" + - "1.76.0" steps: - uses: dtolnay/rust-toolchain@master with: