From 61e87b7be497652c765bc4045b423783161a7022 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Feb 2023 10:13:19 +0000 Subject: [PATCH] Update jni requirement from 0.19.0 to 0.21.0 in /integration/sql 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.19.0...v0.21.0) --- updated-dependencies: - dependency-name: jni dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- integration/sql/iface-java/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/sql/iface-java/Cargo.toml b/integration/sql/iface-java/Cargo.toml index d6e8cc3a86..b8c166b6e5 100644 --- a/integration/sql/iface-java/Cargo.toml +++ b/integration/sql/iface-java/Cargo.toml @@ -14,5 +14,5 @@ crate-type = ["cdylib"] [dependencies] openlineage_sql = {path = "../impl"} anyhow = {workspace = true} -jni = "0.19.0" +jni = "0.21.0" sqlparser = {git = "https://github.com/mobuchowski/sqlparser-rs", branch = "sqlp-release"}