diff --git a/Cargo.lock b/Cargo.lock index 334fc7e72..689a48c65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2317,23 +2317,54 @@ dependencies = [ [[package]] name = "jni" -version = "0.20.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" +checksum = "051ac7b04986c689b0c2e136bd26f992509d4d3e10aff8557ca002d5de7eae39" dependencies = [ "cesu8", + "cfg-if", "combine", + "jni-macros", "jni-sys", "log", - "thiserror 1.0.69", + "paste", + "thiserror 2.0.14", "walkdir", + "windows-link 0.2.0", +] + +[[package]] +name = "jni-macros" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cf8534090fdcb2891c0b24a46db1a11154747c83f59efd732d8fb75a7b2e48c" +dependencies = [ + "cesu8", + "proc-macro-crate", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.104", ] [[package]] name = "jni-sys" -version = "0.3.0" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" +dependencies = [ + "jni-sys-macros", +] + +[[package]] +name = "jni-sys-macros" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" +checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" +dependencies = [ + "quote", + "syn 2.0.104", +] [[package]] name = "jobserver" diff --git a/Cargo.toml b/Cargo.toml index 126597140..a8244aa01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -165,7 +165,7 @@ futures = "0.3" futures-util = "0.3.31" hashbrown = "0.14.5" itertools = "0.14.0" -jni = "0.20.0" +jni = "0.22.0" log = "0.4.29" lz4_flex = "0.12.0" num = "0.4.2"