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 55import org.jetbrains.kotlin.gradle.*
66
77plugins {
8- kotlin(" multiplatform" ) version " 2.0.20 "
8+ kotlin(" multiplatform" ) version " 2.2.0 "
99}
1010
1111kotlin {
@@ -51,22 +51,11 @@ kotlin {
5151 sourceSets {
5252 commonMain.dependencies {
5353 implementation(cryptographyLibs.core)
54+ implementation(cryptographyLibs.provider.optimal)
5455 }
5556 commonTest.dependencies {
5657 implementation(kotlin(" test" ))
5758 implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0" )
5859 }
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- }
7160 }
7261}
Original file line number Diff line number Diff line change 66org.gradle.parallel =true
77org.gradle.caching =true
88org.gradle.configureondemand =true
9+ org.gradle.configuration-cache =true
10+ org.gradle.configuration-cache.parallel =true
911org.gradle.jvmargs =-Xmx2g
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencyResolutionManagement {
1616
1717 versionCatalogs {
1818 create(" cryptographyLibs" ) {
19- from(" dev.whyoleg.cryptography:cryptography-version-catalog:0.4 .0" )
19+ from(" dev.whyoleg.cryptography:cryptography-version-catalog:0.5 .0" )
2020 }
2121 }
2222}
You can’t perform that action at this time.
0 commit comments