From d69842deda433269939e951e1998e38dfbb9029f Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 24 Aug 2023 12:13:58 -0700 Subject: [PATCH] Raise minimum version for testing cxxbridge-cmd to Rust 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.64.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 4340fd1d1..d3c5233ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - rust: beta - rust: stable - rust: 1.60.0 - - rust: 1.64.0 + - rust: 1.70.0 - name: Cargo on macOS rust: nightly os: macos