From a6205ea5e11ddadf9593d42c0e07f02143ed9383 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 8 Dec 2024 17:15:15 +0900 Subject: [PATCH] ci: Update minimum tested Rust version to 1.63 ``` error: package `libc v0.2.167` cannot be built because it requires rustc 1.63 or newer, while the currently active rustc version is 1.61.0 ``` --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d02c43b7..eb47dbb6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,9 +40,9 @@ jobs: matrix: # aarch64/x86_64 macOS and aarch64 Linux are tested on Cirrus CI include: - - rust: '1.61' + - rust: '1.63' os: ubuntu-latest - - rust: '1.61' + - rust: '1.63' os: windows-latest - rust: stable os: ubuntu-latest