From 3acbb335318b330a6c1d446b3a6d80e1e4e821b7 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 20 Oct 2021 19:52:09 -0700 Subject: [PATCH] Disable backtrace build on 1.50 This build step begain failing on a recent update to the `object` crate. $ cargo +1.50.0 check --features backtrace Updating crates.io index Downloaded backtrace v0.3.62 Downloaded object v0.27.0 error: failed to parse manifest at `/home/david/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.27.0/Cargo.toml` Caused by: feature `resolver` is required this Cargo does not support nightly features, but if you switch to nightly channel you can add `cargo-features = ["resolver"]` to enable this feature --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ca51c6..d9628ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,7 @@ jobs: - run: cargo test - run: cargo check --no-default-features - run: cargo check --features backtrace + if: matrix.rust != '1.50.0' backtrace: name: Rust 1.42.0