Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Use bitcoin-kmp 0.13.0 which includes improvements to address/script conversions methods that make them easier to use from Phoenix.
bitcoin-kmp 0.13.0 uses secp256k1-kmp 0.10.1 which is based on secp256k1 0.3.2

Use kotlinx coroutines 1.7.2 (a bugfix release, see https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.7.2)
  • Loading branch information
sstone committed Jul 4, 2023
1 parent 5f6d0df commit ce2af55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ kotlin {
val ktorVersion: String by extra { "2.0.3" }
fun ktor(module: String) = "io.ktor:ktor-$module:$ktorVersion"
val serializationVersion = "1.5.1"
val coroutineVersion = "1.7.1"
val coroutineVersion = "1.7.2"

val commonMain by sourceSets.getting {
dependencies {
api("fr.acinq.bitcoin:bitcoin-kmp:0.12.0") // when upgrading, keep secp256k1-kmp-jni-jvm in sync below
api("fr.acinq.bitcoin:bitcoin-kmp:0.13.0") // when upgrading, keep secp256k1-kmp-jni-jvm in sync below
api("org.kodein.log:canard:0.18.0")
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutineVersion")
api("org.jetbrains.kotlinx:kotlinx-serialization-core:$serializationVersion")
Expand Down Expand Up @@ -63,7 +63,7 @@ kotlin {
api(ktor("client-okhttp"))
api(ktor("network"))
api(ktor("network-tls"))
implementation("fr.acinq.secp256k1:secp256k1-kmp-jni-jvm:0.10.0")
implementation("fr.acinq.secp256k1:secp256k1-kmp-jni-jvm:0.10.1")
implementation("org.slf4j:slf4j-api:1.7.36")
api("org.xerial:sqlite-jdbc:3.32.3.2")
}
Expand Down

0 comments on commit ce2af55

Please sign in to comment.