Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bench/include/kotlin-native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import org.jetbrains.kotlin.config.KotlinCompilerVersion
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget

plugins {
val kotlinVersion = "1.8.21"
val kotlinVersion = "2.0.21"
kotlin("multiplatform").version(kotlinVersion)
kotlin("plugin.serialization").version(kotlinVersion)
id("com.github.ben-manes.versions").version("0.46.0")
id("com.github.ben-manes.versions").version("0.51.0")
}

repositories {
Expand All @@ -24,8 +24,8 @@ kotlin {
implementation(libs.bignum)
implementation(libs.kbignum)
// implementation("com.ionspin.kotlin:bignum:0.3.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions bench/include/kotlin-native/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]

[libraries]
bignum = {module = "com.ionspin.kotlin:bignum", version = "0.3.8"}
kbignum = {module = "com.soywiz.korlibs.kbignum:kbignum", version = "3.4.0"}
bignum = {module = "com.ionspin.kotlin:bignum", version = "0.3.10"}
kbignum = {module = "com.soywiz.korlibs.kbignum:kbignum", version = "4.0.10"}

[bundles]
Loading