Use api in lieu of implementation

Closes #82
This commit is contained in:
Matthew Nelson 2023-01-05 21:21:26 -05:00 committed by Michael Bull
parent 6f86d20d53
commit bdd29833a7
2 changed files with 1 additions and 2 deletions

View File

@ -34,7 +34,6 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(project(":kotlin-result"))
implementation(project(":kotlin-result-coroutines"))
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:${Versions.kotlinBenchmark}")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.kotlinCoroutines}")

View File

@ -16,7 +16,7 @@ kotlin {
val commonMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.kotlinCoroutines}")
implementation(project(":kotlin-result"))
api(project(":kotlin-result"))
}
}