From 8e62244b25b99cca2c00ece065a719438ca55e87 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 20 Apr 2024 20:52:08 -0700 Subject: [PATCH] Discard CI coverage of backtrace feature on toolchains older than 1.63 The backtrace crate's `cc` dependency now requires 1.63+. --- .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 7d41a90..5f539d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [1.65.0, 1.59.0, 1.55.0, 1.52.0, 1.51.0, 1.50.0, 1.39.0] + rust: [1.65.0, 1.52.0, 1.51.0, 1.50.0, 1.39.0] timeout-minutes: 45 steps: - uses: actions/checkout@v4