From 24db47720ef2688552f4bd0e565cd3be03efee53 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 24 Aug 2023 20:25:45 -0700 Subject: [PATCH] Raise minimum tested compiler to 1.70 Required by clap 4.4.0. error: package `clap v4.4.0` cannot be built because it requires rustc 1.70.0 or newer, while the currently active rustc version is 1.65.0 Either upgrade to rustc 1.70.0 or newer, or use cargo update -p clap@4.4.0 --precise ver where `ver` is the latest version of `clap` supporting rustc 1.65.0 --- .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 8d57778..dceb924 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [nightly, beta, stable, 1.65.0] + rust: [nightly, beta, stable, 1.70.0] timeout-minutes: 45 steps: - uses: actions/checkout@v3