From c88ee408524c47b70aacea981f4ad7954e76e7ce Mon Sep 17 00:00:00 2001 From: Alberto Faria Date: Wed, 24 Jul 2024 12:01:38 +0100 Subject: [PATCH] Increase MSRV to 1.76 Signed-off-by: Alberto Faria --- .github/workflows/lint.yml | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3885cff..b65b51c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - rust: [ stable, "1.74" ] + rust: [ stable, "1.76" ] steps: - uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v4 - name: Set Rust version - run: rustup default 1.74 + run: rustup default 1.76 - name: Install cargo-hack and cargo-minimal-versions run: | diff --git a/Cargo.toml b/Cargo.toml index 15f9c84..a479872 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "crun-vm" version = "0.2.0" edition = "2021" -rust-version = "1.74" +rust-version = "1.76" license = "GPL-2.0-or-later" [dependencies.anyhow]