From e0941284702389525f22fc710dc40ea25dcc64e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 16:24:50 +0000 Subject: [PATCH] Update jni requirement from 0.20.0 to 0.21.1 Updates the requirements on [jni](https://github.com/jni-rs/jni-rs) to permit the latest version. - [Release notes](https://github.com/jni-rs/jni-rs/releases) - [Changelog](https://github.com/jni-rs/jni-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jni-rs/jni-rs/compare/v0.20.0...v0.21.1) --- updated-dependencies: - dependency-name: jni dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- example/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 023d22f..7439763 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" description = "Android intent utilities" [dependencies] -jni = "0.20.0" +jni = "0.21.1" ndk-context = "0.1.1" [workspace] diff --git a/example/Cargo.toml b/example/Cargo.toml index 77509fe..44922d7 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] android-activity = { version = "0.4.0", features = ["native-activity"] } android-intent.path = "../" -jni = "0.20.0" +jni = "0.21.1" ndk-context = "0.1.1" [package.metadata.android.sdk]