From 1e4dbf33f5d23f1d145d74a8576e3992f6574a6b Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 23 Jun 2022 12:13:28 +0200 Subject: [PATCH] Bump MSRV to 1.56.1 due to MSRV update in hashbrown 0.12.1 --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 18578c4..036920f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -12,16 +12,16 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - rust: [stable, beta, 1.51.0] + rust: [stable, beta, 1.56.1] exclude: - os: macos-latest rust: beta - os: windows-latest rust: beta - os: macos-latest - rust: 1.51.0 + rust: 1.56.1 - os: windows-latest - rust: 1.51.0 + rust: 1.56.1 runs-on: ${{ matrix.os }}