Skip to content

Commit 54cfb38

Browse files
authored
Remove dependency to coroutine core lib (#254)
Resolves #239
1 parent a03e115 commit 54cfb38

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

gradle/libs.versions.toml

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "2.0.0
2626
kotlin-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "serialization" }
2727
kotlin-serialization-json-okio = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json-okio", version.ref = "serialization" }
2828
kotlin-benchmark = { group = "org.jetbrains.kotlinx", name = "kotlinx-benchmark-runtime", version.ref = "benchmark" }
29-
kotlin-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version = "1.10.1" }
3029
kotest-assertions-core = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" }
3130
kotest-framework-engine = { module = "io.kotest:kotest-framework-engine", version.ref = "kotest" }
3231
kotest-runner-junit5 = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" }

json-schema-validator/build.gradle.kts

-7
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,6 @@ kotlin {
105105
commonTest {
106106
dependencies {
107107
implementation(libs.kotest.assertions.core)
108-
implementation(libs.kotlin.coroutines.core.get().toString()) {
109-
// see "https://kotlinlang.slack.com/archives/CDFP59223/p1736191408326039?thread_ts=1734964013.996149&cid=CDFP59223"
110-
because(
111-
"there is a problem with linkage related to changes in kotlin 2.1.0: " +
112-
"wasmJs tests in browser does not work without updating coroutines to the version compiled with 2.1.0",
113-
)
114-
}
115108
implementation(libs.kotest.framework.engine)
116109
implementation(kotlin("test-common"))
117110
implementation(kotlin("test-annotations-common"))

test-suites/build.gradle.kts

-8
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,6 @@ kotlin {
6060
implementation(kotlin("test-annotations-common"))
6161
implementation(libs.okio.common)
6262
implementation(libs.kotlin.serialization.json.okio)
63-
64-
implementation(libs.kotlin.coroutines.core.get().toString()) {
65-
// see "https://kotlinlang.slack.com/archives/CDFP59223/p1736191408326039?thread_ts=1734964013.996149&cid=CDFP59223"
66-
because(
67-
"there is a problem with linkage related to changes in kotlin 2.1.0: " +
68-
"wasmJs tests in browser does not work without updating coroutines to the version compiled with 2.1.0",
69-
)
70-
}
7163
}
7264
}
7365
jsTest {

0 commit comments

Comments
 (0)