From 6edeb29eba8ff6f6c6d5b607ce953895bbf62c19 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 21 Aug 2021 21:18:14 -0700 Subject: [PATCH] Raise minimum compiler to 1.38 Required by indexmap's dependency on hashbrown: error[E0658]: use of unstable library feature 'ptr_cast' --> hashbrown-0.11.2/src/raw/mod.rs:504:57 | 504 | NonNull::new_unchecked(self.table.ctrl.as_ptr().cast()) | ^^^^ --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a76dc70d..bf3becb0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,11 +22,11 @@ jobs: - run: cargo test msrv: - name: Rust 1.31.0 + name: Rust 1.38.0 runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: dtolnay/rust-toolchain@1.31.0 + - uses: dtolnay/rust-toolchain@1.38.0 - run: cargo check clippy: