From d3575342b62c9e37ba4249a5a5d6d1e9d5f03b81 Mon Sep 17 00:00:00 2001 From: Liam Gray Date: Wed, 22 Nov 2023 13:32:42 +0000 Subject: [PATCH] Bump MSRV to 1.63 due to rustix sub-dependency MSRV --- .github/workflows/main.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 46644dd..892af1e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - rust: ["1.60", stable, beta, nightly] + rust: ["1.63", stable, beta, nightly] os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@master diff --git a/Cargo.toml b/Cargo.toml index 01272fc..3f53cd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ description = """ An implementation of the GNU make jobserver for Rust """ edition = "2021" -rust-version = "1.60" +rust-version = "1.63" [target.'cfg(unix)'.dependencies] libc = "0.2.50"