It seems like KotlinX Serialization doesn't yet su...
# serialization
d
It seems like KotlinX Serialization doesn't yet support kotlin.time.Instant or am I missing something?
c
From https://github.com/Kotlin/kotlinx-datetime?tab=readme-ov-file#deprecation-of-instant it looks like you need to use kotlinx.serialization 1.9.0 or later
If you use kotlinx-serialization to serialize the Instant type, update that dependency to use 1.9.0 or a newer version.
d
Thanks, I had just updated all my libs recently, it seems that I must have missed that update. I just updated, but Intellij still underlines it with red...
Thanks!