From b955f09b806b60ed71e7816bf9bd722ef76c3061 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Tue, 6 Jun 2023 16:52:47 +0100 Subject: [PATCH] build: Bump MSRV to 1.64 This is required for openssl-src crate as it now uses functionality first released in this version. See: https://github.com/alexcrichton/openssl-src-rs/pull/184 Signed-off-by: Rob Bradford --- .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 d81772bbe..bd31241e9 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: - stable - beta - nightly - - "1.62" + - "1.64" target: - x86_64-unknown-linux-gnu - x86_64-unknown-linux-musl diff --git a/Cargo.toml b/Cargo.toml index 5e3675ccc..9364e2ddc 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.62" +rust-version = "1.64" [profile.release] lto = true