Skip to content

Commit

Permalink
Added support TON-SDK 1.32.0 and fixed binaries for win and lin
Browse files Browse the repository at this point in the history
  • Loading branch information
mdorofeev committed Apr 23, 2022
1 parent 2a389c1 commit 965c29d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
20 changes: 10 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.0'
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
id 'com.adarshr.test-logger' version '2.1.0'
id 'org.jetbrains.dokka' version "1.4.32"
id 'maven'
Expand Down Expand Up @@ -106,15 +106,15 @@ uploadArchives {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1'
implementation 'org.scijava:native-lib-loader:2.4.0'
implementation "org.jetbrains.kotlin:kotlin-reflect:1.4.0"
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.11.4"
implementation("io.github.microutils:kotlin-logging:1.7.9")

testImplementation 'io.kotest:kotest-runner-junit5:4.2.3'
testImplementation 'io.kotest:kotest-assertions-core:4.2.3'
testImplementation 'io.kotest:kotest-property:4.2.3'
testImplementation "io.mockk:mockk:1.10.0"
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.6.20'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.13.2'
implementation('io.github.microutils:kotlin-logging:2.1.21')

testImplementation 'io.kotest:kotest-runner-junit5:5.2.3'
testImplementation 'io.kotest:kotest-assertions-core:5.2.3'
testImplementation 'io.kotest:kotest-property:5.2.3'
testImplementation 'io.mockk:mockk:1.12.3'
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.29'
}
3 changes: 2 additions & 1 deletion src/main/kotlin/ee/nx01/tonclient/TonClientConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ data class NetworkConfig(
val messageProcessingTimeout: Int? = null,
val waitForTimeout: Int? = null,
val outOfSyncThreshold: Int? = null,
val accessKey: String? = null
val accessKey: String? = null,
val queriesProtocol: String? = null
)

data class CryptoConfig(
Expand Down
Binary file modified src/main/resources/natives/osx_arm64/libtonclientjni.dylib
Binary file not shown.

0 comments on commit 965c29d

Please sign in to comment.