From 6dec2fea74f55c3bcdec6f1425deccc38a09d295 Mon Sep 17 00:00:00 2001 From: Infendro Date: Fri, 12 Dec 2025 16:06:26 +0100 Subject: [PATCH] upgrade dependencies --- build.gradle.kts | 7 +++++++ gradle/libs.versions.toml | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 360e0ea..15041fb 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -24,6 +24,13 @@ kotlin { implementation(libs.hash) implementation(libs.bytearray) } + commonTest.dependencies { + implementation(libs.test) + } + } + + compilerOptions { + freeCompilerArgs.add("-opt-in=kotlin.ExperimentalUnsignedTypes") } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 06f4164..edbaf43 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,8 +1,8 @@ [versions] -kotlin = "2.2.10" -mac = "1.1.2" -hash = "1.2.2" -bytearray = "1.1.1" +kotlin = "2.2.21" +mac = "1.2.0" +hash = "1.3.2" +bytearray = "1.2.4" [plugins] multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }