From a1ce37c2afab853a99960c5a19098b58d4f9ea39 Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Tue, 17 Oct 2023 16:22:37 -0700 Subject: [PATCH] build: Bump MSRV to 1.65 Sev-Snp on MSHV uses igvm crate to parse the igvm file. igvm crate needs minimum rust version 1.65 to build. Signed-off-by: Muminul Islam --- .github/workflows/build.yaml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4aa6ae2dc..4f1fed626 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: - stable - beta - nightly - - "1.64" + - "1.65" target: - x86_64-unknown-linux-gnu - x86_64-unknown-linux-musl diff --git a/Cargo.toml b/Cargo.toml index 59a306782..831cc190e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ homepage = "https://github.com/cloud-hypervisor/cloud-hypervisor" # a.) A dependency requires it, # b.) If we want to use a new feature and that MSRV is at least 6 months old, # c.) There is a security issue that is addressed by the toolchain update. -rust-version = "1.64" +rust-version = "1.65" [profile.release] lto = true