vdshb

Results 35 comments of vdshb

FYI: **kotlinx.coroutines 1.9.0-RC** has wasmWasi support : https://repo1.maven.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core-wasm-wasi/

FYI: kotlinx.coroutines 1.9.0 with Wasm/WASI support is released: https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.9.0

It would be nice to see JS/WASM targets in the roadmap as well.

I also think, that multiplatform support is a missing part of this promising DI library. I believe this set of targets is a good foundation (`.kts`-like config example for 1.9.20):...

> we want to make more native solution Perfect solution might be not that easy to achive yet. Compiler plugins are limited by compilation module, so you'll have to accept...

@acelost , could you publish "simplest solution" in separated branch for early adopters? If there is anything to show. I believe it would be valuable as is without any guarantees...

Is anything changed in this field, since `JsonUnquotedLiteral` was introduced a while ago? I still can't find serializer which I could to use like this (`barJson` contains raw json object...

BTW, while I'm waiting for some response... This is my naive implementation of `JsonRawSerializer` if someone is interested. ```kotlin import kotlinx.serialization.ExperimentalSerializationApi import kotlinx.serialization.KSerializer import kotlinx.serialization.descriptors.PrimitiveKind import kotlinx.serialization.descriptors.PrimitiveSerialDescriptor import kotlinx.serialization.descriptors.SerialDescriptor import...

@imherrera Saving exact event time for logging (there might be a time gap between event and putting event into log)

My draft implementation: ```kotlin import com.ionspin.kotlin.bignum.decimal.BigDecimal import com.ionspin.kotlin.bignum.integer.BigInteger import kotlin.math.absoluteValue fun java.math.BigDecimal.toKotlinBigDecimal(): BigDecimal { if (this == java.math.BigDecimal.ZERO) { return BigDecimal.ZERO } return if (scale() > 0) { BigDecimal.fromBigIntegerWithExponent( this.unscaledValue().toKotlinBigInteger(),...