Skip to content

Commit

Permalink
Use api in lieu of implementation
Browse files Browse the repository at this point in the history
Closes #82
  • Loading branch information
05nelsonm authored and michaelbull committed Feb 7, 2023
1 parent 6f86d20 commit bdd2983
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
2 changes: 1 addition & 1 deletion kotlin-result-coroutines/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
}
}

Expand Down

0 comments on commit bdd2983

Please sign in to comment.