From 755798ddd1d2c4b55ad4cddf1dd13c5d2ff3f7e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 09:02:26 +0000 Subject: [PATCH] build(deps): update jni requirement from 0.20 to 0.21 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] --- ndk-examples/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndk-examples/Cargo.toml b/ndk-examples/Cargo.toml index ec422d8..76992b1 100644 --- a/ndk-examples/Cargo.toml +++ b/ndk-examples/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" publish = false [target.'cfg(target_os = "android")'.dependencies] -jni = "0.20" +jni = "0.21" libc = "0.2" log = "0.4.14" ndk = { version = "0.7", features = ["api-level-23"] }