File tree Expand file tree Collapse file tree 3 files changed +5
-14
lines changed Expand file tree Collapse file tree 3 files changed +5
-14
lines changed Original file line number Diff line number Diff line change 5
5
import org.jetbrains.kotlin.gradle.*
6
6
7
7
plugins {
8
- kotlin(" multiplatform" ) version " 2.0.20 "
8
+ kotlin(" multiplatform" ) version " 2.2.0 "
9
9
}
10
10
11
11
kotlin {
@@ -51,22 +51,11 @@ kotlin {
51
51
sourceSets {
52
52
commonMain.dependencies {
53
53
implementation(cryptographyLibs.core)
54
+ implementation(cryptographyLibs.provider.optimal)
54
55
}
55
56
commonTest.dependencies {
56
57
implementation(kotlin(" test" ))
57
58
implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0" )
58
59
}
59
- jsMain.dependencies {
60
- implementation(cryptographyLibs.provider.webcrypto)
61
- }
62
- wasmJsMain.dependencies {
63
- implementation(cryptographyLibs.provider.webcrypto)
64
- }
65
- jvmMain.dependencies {
66
- implementation(cryptographyLibs.provider.jdk)
67
- }
68
- nativeMain.dependencies {
69
- implementation(cryptographyLibs.provider.openssl3.prebuilt)
70
- }
71
60
}
72
61
}
Original file line number Diff line number Diff line change 6
6
org.gradle.parallel =true
7
7
org.gradle.caching =true
8
8
org.gradle.configureondemand =true
9
+ org.gradle.configuration-cache =true
10
+ org.gradle.configuration-cache.parallel =true
9
11
org.gradle.jvmargs =-Xmx2g
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencyResolutionManagement {
16
16
17
17
versionCatalogs {
18
18
create(" cryptographyLibs" ) {
19
- from(" dev.whyoleg.cryptography:cryptography-version-catalog:0.4 .0" )
19
+ from(" dev.whyoleg.cryptography:cryptography-version-catalog:0.5 .0" )
20
20
}
21
21
}
22
22
}
You can’t perform that action at this time.
0 commit comments