Currently the codbase that I work on started to report an error message:
[info] compiling 2 Scala sources to /home/arne/proj/priceloop/nocode/cli/target/scala-2.13/classes ...
[error] /home/arne/proj/priceloop/nocode/cli/src/main/scala/helpers/IOCommand.scala:42:31: implicit error;
[error] !I deserializer: chameleon.Deserializer[java.lang.String, java.lang.String]
[error] chameleon.ext.jsoniter.jsoniterSerializerDeserializer invalid because
[error] !I evidence$1: com.github.plokhotnyuk.jsoniter_scala.core.JsonCodec[java.lang.String]
[error] val api = client.wire[Api[IO]]
This error message is incomprehensible. It vaguely hints that it has something to do with implicits, and then it says something about evidence by just listing a class name that doesn't tell me anything.
Currently the codbase that I work on started to report an error message:
This error message is incomprehensible. It vaguely hints that it has something to do with implicits, and then it says something about
evidenceby just listing a class name that doesn't tell me anything.