Is there a publicly accessible repo with dev build...
# kotlinx-datetime
o
Is there a publicly accessible repo with dev builds of kotlinx-datetime? I'm interested in the new
wasmWasi
target support.
d
Nope. It shouldn't be difficult to build your own version, though:
Copy code
git clone <https://github.com/Kotlin/kotlinx-datetime>
cd kotlinx-datetime/
./gradlew publishToMavenLocal
Then, in your own project, add
mavenLocal()
to the list of repositories to grab artifacts from, and depend on
"org.jetbrains.kotlinx:kotlinx-datetime:$lastVersion-SNAPSHOT"
(currently,
"org.jetbrains.kotlinx:kotlinx-datetime:0.6.1-SNAPSHOT"
).
o
Sure, thanks!