From fdc177d9cd2ced46b69aa77003d198e3d9663cf4 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 17 Jul 2020 19:32:41 -0700 Subject: [PATCH] Raise preserve_order required Rust version to 1.32 Required by the dependency on indexmap which now depends on hashbrown 0.8.1. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e96d06f93..7040af98b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [beta, stable, 1.31.0] + rust: [beta, stable, 1.32.0, 1.31.0] os: [ubuntu] include: - rust: stable @@ -42,6 +42,7 @@ jobs: toolchain: ${{matrix.rust}} - run: cargo check - run: cargo check --features preserve_order + if: matrix.rust != '1.31.0' - run: cargo check --features float_roundtrip - run: cargo check --features arbitrary_precision - run: cargo check --features raw_value