Skip to content

Commit

Permalink
Disable backtrace build on 1.50
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dtolnay committed Oct 21, 2021
1 parent 4c386df commit 3acbb33
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3acbb33

Please sign in to comment.