From 98376071ace1e18dfec49be8805659daf9b79a87 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 13 Jan 2023 19:07:07 -0800 Subject: [PATCH] Raise minimum rustc to 1.64 Required by clap 4.1 / clap_lex 0.3.1: error: package `clap_lex v0.3.1` cannot be built because it requires rustc 1.64.0 or newer --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaed4aa..1eb5a4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [nightly, beta, stable, 1.60.0] + rust: [nightly, beta, stable, 1.64.0] timeout-minutes: 45 steps: - uses: actions/checkout@v3