From 7efbc699da7889b59ca34d6e2a58a8ae6b3c490c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 2 Jun 2026 21:21:49 -0500 Subject: [PATCH] chore(deps): update com.github.luben:zstd-jni to v1.5.7-10 (#5721) --- core/takserver/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/takserver/build.gradle.kts b/core/takserver/build.gradle.kts index a89201ec3e..bb77c08232 100644 --- a/core/takserver/build.gradle.kts +++ b/core/takserver/build.gradle.kts @@ -56,7 +56,7 @@ kotlin { jvmMain.dependencies { // Desktop JVM: standard JAR bundles native libs for desktop archs. - implementation("com.github.luben:zstd-jni:1.5.7-9") + implementation("com.github.luben:zstd-jni:1.5.7-10") // xpp3 is excluded from jvmAndroidMain (Android ships it as a // platform class), but Desktop JVM still needs it for XmlPullParser. implementation("org.ogce:xpp3:1.1.6") @@ -66,7 +66,7 @@ kotlin { // Android: @aar variant ships .so files for arm/arm64/x86/x86_64. // Without this, zstd-jni's ZstdDictCompress. throws // UnsatisfiedLinkError and poisons TakV2Compressor permanently. - implementation("com.github.luben:zstd-jni:1.5.7-9@aar") + implementation("com.github.luben:zstd-jni:1.5.7-10@aar") } commonTest.dependencies { @@ -81,7 +81,7 @@ kotlin { dependencies { // Host-JVM tests need the platform JAR (not AAR) for zstd native // libs — the @aar from androidMain only ships ARM/x86 .so files. - implementation("com.github.luben:zstd-jni:1.5.7-9") + implementation("com.github.luben:zstd-jni:1.5.7-10") } } }