Skip to content

Commit

Permalink
Fix API-dependency on kotlinx-collections (#190)
Browse files Browse the repository at this point in the history
`persistentHashMapOf()` is being used as default argument in many places in PUBLIC classes, making the dependency on "kotlinx-collections-immutable" not "implementation", but "api".
  • Loading branch information
Lipen authored Jul 16, 2024
1 parent 61bf0da commit bfcafae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usvm-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ dependencies {
api("io.ksmt:ksmt-core:${Versions.ksmt}")
api("io.ksmt:ksmt-z3:${Versions.ksmt}")
api("io.github.microutils:kotlin-logging:${Versions.klogging}")
api("org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:${Versions.collections}")

implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:${Versions.collections}")
testImplementation("io.mockk:mockk:${Versions.mockk}")
testImplementation("org.junit.jupiter:junit-jupiter-params:${Versions.junitParams}")

Expand Down

0 comments on commit bfcafae

Please sign in to comment.