We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b7d3a2 commit e9af677Copy full SHA for e9af677
gradle/libs.versions.toml
@@ -1,5 +1,9 @@
1
[versions]
2
compose = "1.6.0-alpha01"
3
+coroutines = "1.7.3"
4
5
[plugins]
6
compose = { id = "org.jetbrains.compose", version.ref = "compose" }
7
+
8
+[libraries]
9
+kotlinx-coroutinesCore = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
test/build.gradle.kts
@@ -10,6 +10,7 @@ kotlin.kodein {
10
implementation(kotlin.compose.html.core)
11
implementation(kotlin.compose.runtime)
12
implementation(projects.cssInComposable)
13
+ implementation(libs.kotlinx.coroutinesCore)
14
}
15
target.binaries.executable()
16
0 commit comments