Skip to content

Commit 5c82a1b

Browse files
committed
Bump MSRV and edition
1 parent b368079 commit 5c82a1b

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- stable
1313
- beta
1414
- nightly
15-
- 1.73.0 # MSRV
15+
- 1.86.0 # MSRV
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v4

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ categories = [
1515
"development-tools::cargo-plugins",
1616
"development-tools::build-utils"
1717
]
18-
edition = "2021"
19-
rust-version = "1.73"
18+
edition = "2024"
19+
rust-version = "1.86"
2020
default-run = "cargo-ndk"
2121

2222
[badges]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# cargo-ndk - Build Rust code for Android
22

33
[<img alt="CI" src="https://github.com/bbqsrc/cargo-ndk/actions/workflows/ci.yml/badge.svg">](https://github.com/bbqsrc/cargo-ndk/actions)
4-
<img alt="Minimum supported Rust version: 1.73" src="https://img.shields.io/badge/MSRV-1.73-informational">
4+
<img alt="Minimum supported Rust version: 1.86" src="https://img.shields.io/badge/MSRV-1.86-informational">
55

66
This cargo extension handles all the environment configuration needed for successfully building libraries
77
for Android from a Rust codebase, with support for generating the correct `jniLibs` directory structure.

example/bindgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bindgen-android"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55

66
[lib]
77
crate-type = ["staticlib", "cdylib"]

example/openssl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "openssl-android"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55

66
[dependencies]
77
openssl = { version = "0.10.68", features = ["vendored"] }

0 commit comments

Comments
 (0)