diff --git a/build.gradle.kts b/build.gradle.kts index 011f4d8..267fc8f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -31,15 +31,11 @@ kotlin { sourceSets { commonMain.dependencies { - implementation(libs.mac) - implementation(libs.hash) implementation(libs.bytes) + implementation(libs.hash) + implementation(libs.mac) } } - - compilerOptions { - freeCompilerArgs.add("-opt-in=kotlin.time.ExperimentalTime") - } } publishing.repositories { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 14aa349..4215199 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,15 +1,15 @@ [versions] infendro = "1.1.0" kotlin = "2.3.0" -mac = "1.3.0" -hash = "1.5.1" -bytes = "1.3.3" +bytes = "1.4.0" +hash = "1.6.0" +mac = "1.4.0" [plugins] infendro = { id = "com.infendro.plugin", version.ref = "infendro" } multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } [libraries] -mac = { module = "com.infendro:mac", version.ref = "mac" } -hash = { module = "com.infendro:hash", version.ref = "hash" } bytes = { module = "com.infendro:bytes", version.ref = "bytes" } +hash = { module = "com.infendro:hash", version.ref = "hash" } +mac = { module = "com.infendro:mac", version.ref = "mac" }