From b3122936047778213c401cccfac64fb3020573fc Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Tue, 31 Oct 2023 10:12:15 -0700 Subject: [PATCH] build: Bump MSRV to 1.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is required for the following dependency: toml_edit v0.19.15 └── proc-macro-crate v1.3.1 ├── zbus_macros v3.14.1 (proc-macro) └── zbus v3.14.1 ├── cloud-hypervisor v35.0.0 (/home/chenb/project/cloud-hypervisor/cloud-hypervisor) └── vmm v0.1.0 (/home/chenb/project/cloud-hypervisor/cloud-hypervisor/vmm) └── cloud-hypervisor v35.0.0 (/home/chenb/project/cloud-hypervisor/cloud-hypervisor) Signed-off-by: Bo Chen --- .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 4f1fed626..1d9bb8656 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: - stable - beta - nightly - - "1.65" + - "1.66" target: - x86_64-unknown-linux-gnu - x86_64-unknown-linux-musl diff --git a/Cargo.toml b/Cargo.toml index 01b959000..17bf452b5 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.65" +rust-version = "1.66" [profile.release] lto = true