Skip to content

Commit cfa04bf

Browse files
MukjepScarletkpavlov
authored andcommitted
remove dependency on CIO in server module
replace with core
1 parent 729718a commit cfa04bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ kotlin-logging = { group = "io.github.oshai", name = "kotlin-logging", version.r
4242
ktor-client-core = { group = "io.ktor", name = "ktor-client-core", version.ref = "ktor" }
4343
ktor-server-sse = { group = "io.ktor", name = "ktor-server-sse", version.ref = "ktor" }
4444
ktor-server-websockets = { group = "io.ktor", name = "ktor-server-websockets", version.ref = "ktor" }
45-
ktor-server-cio = { group = "io.ktor", name = "ktor-server-cio", version.ref = "ktor" }
45+
ktor-server-core = { group = "io.ktor", name = "ktor-server-core", version.ref = "ktor" }
4646

4747
# Testing
4848
kotlinx-coroutines-test = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-test", version.ref = "coroutines" }

kotlin-sdk-server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ kotlin {
1111
commonMain {
1212
dependencies {
1313
api(project(":kotlin-sdk-core"))
14-
api(libs.ktor.server.cio)
14+
api(libs.ktor.server.core)
1515
api(libs.ktor.server.sse)
1616
implementation(libs.kotlin.logging)
1717
}

0 commit comments

Comments
 (0)