From 735720ed24e29433e3fdb1bd7c7c73753272fd5c Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Fri, 6 Dec 2024 11:16:06 +0200 Subject: [PATCH] fix: msrv should be 1.71.1 Signed-off-by: Lachezar Lechev --- .github/workflows/build-kotlin.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- stremio-core-kotlin/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-kotlin.yml b/.github/workflows/build-kotlin.yml index 82dbf8c..9181d4c 100644 --- a/.github/workflows/build-kotlin.yml +++ b/.github/workflows/build-kotlin.yml @@ -32,8 +32,8 @@ jobs: with: version: "${{ env.PROTOC_VERSION }}" - - name: Rust setup (1.71.0) - uses: dtolnay/rust-toolchain@1.71.0 + - name: Rust setup (1.71.1) + uses: dtolnay/rust-toolchain@1.71.1 with: components: rustfmt, clippy diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce583d3..5babd87 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,8 +33,8 @@ jobs: run: yes | sdkmanager "ndk;${{ env.NDK_VERSION }}" >/dev/null # use MSRV - - name: Set Rust version to MSRV 1.71 - uses: dtolnay/rust-toolchain@1.71 + - name: Set Rust version to MSRV 1.71.1 + uses: dtolnay/rust-toolchain@1.71.1 with: # Add armv7, aarch64, i686, x86_64 targets targets: armv7-linux-androideabi, aarch64-linux-android, i686-linux-android, x86_64-linux-android diff --git a/stremio-core-kotlin/Cargo.toml b/stremio-core-kotlin/Cargo.toml index 4ed333f..9cf14d2 100644 --- a/stremio-core-kotlin/Cargo.toml +++ b/stremio-core-kotlin/Cargo.toml @@ -4,7 +4,7 @@ version = "1.4.1" authors = ["Smart Code OOD"] edition = "2021" -rust-version = "1.71.0" +rust-version = "1.71.1" [features] default = ["kotlin"]