Skip to content

Commit e5b8242

Browse files
committed
Bump MSRV to 1.69.0 considering we can't build cargo ndk with 1.68
cargo ndk will fail to build with 1.68 due to a toml_edit dep. Technically android-activity itself should still build with 1.68 but it's simpler to synchronize the `rust-version` with the minimum version that we actually test in CI (where we need to build cargo ndk)
1 parent c9faa9c commit e5b8242

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
# See top README for MSRV policy
20-
rust-version: [1.68.0, stable]
20+
rust-version: [1.69.0, stable]
2121
steps:
2222
- uses: actions/checkout@v4
2323

android-activity/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
- rust-version bumped to 1.69.0 ([#156](https://github.com/rust-mobile/android-activity/pull/156))
89

910

1011
## [0.5.2] - 2024-01-30

android-activity/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ documentation = "https://docs.rs/android-activity"
1010
description = "Glue for building Rust applications on Android with NativeActivity or GameActivity"
1111
license = "MIT OR Apache-2.0"
1212

13-
# 1.68 was when Rust last updated the Android NDK version used to build the
13+
# 1.69 was when Rust last updated the Android NDK version used to build the
1414
# standard library which avoids needing the -lunwind workaround in build tools.
1515
#
1616
# We depend on cargo-ndk for building which has dropped support for the above
1717
# linker workaround.
18-
rust-version = "1.68.0"
18+
rust-version = "1.69.0"
1919

2020
[features]
2121
# Note: we don't enable any backend by default since features

0 commit comments

Comments
 (0)