From 33e243cf123b03f3d42e8e15b5b75e306c1fd297 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Nov 2022 15:29:11 +0000 Subject: [PATCH] Update jni requirement from 0.19.0 to 0.20.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.20.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..91a32b326e 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.20.0" sqlparser = {git = "https://github.com/mobuchowski/sqlparser-rs", branch = "sqlp-release"}