Bump MSRV to 1.68

- Lets us build with cargo ndk 3+
- Lets us remove suppression for false-negative clippy warning about unsafe
  blocks in unsafe functions
- Should unblock CI for #102

- 1.68.0 notably also builds the standard library with a newer r25 NDK
  toolchain which avoid the need for awkward libgcc workarounds, so it's
  anyway a desirable baseline for Android projects.
This commit is contained in:
Robert Bragg
2023-08-03 17:01:27 +01:00
parent ed2dc53ee4
commit 66cfc68dac
4 changed files with 3 additions and 7 deletions
+2 -4
View File
@@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
# See top README for MSRV policy
rust_version: [1.64.0, stable]
rust_version: [1.68.0, stable]
steps:
- uses: actions/checkout@v3
@@ -34,9 +34,7 @@ jobs:
i686-linux-android
- name: Install cargo-ndk
# We're currently sticking with cargo-ndk 2, until we bump our
# MSRV to 1.68+
run: cargo install cargo-ndk --version "^2"
run: cargo install cargo-ndk
- name: Setup Java
uses: actions/setup-java@v3