From bd0a533d3f84c755555c4867a1b5f9bbb3e8e1fd Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Thu, 11 Sep 2025 14:45:37 -0500 Subject: [PATCH] fix versioning --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42122ce..5d4c59b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: rust: - stable - beta - - 1.65.0 # MSRV from Cargo.toml + - 1.66.0 # MSRV from Cargo.toml steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master @@ -26,7 +26,7 @@ jobs: toolchain: ${{ matrix.rust }} - uses: Swatinem/rust-cache@v2 - name: Use MSRV lockfile for minimum version testing - if: matrix.rust == '1.65.0' + if: matrix.rust == '1.66.0' run: cp Cargo.lock.msrv Cargo.lock - name: Run tests run: cargo test --verbose