msgpack4s
msgpack4s copied to clipboard
A fast, streaming-friendly, type-safe, pure-Scala MessagePack library. Supercharge your microservices today!
According to https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ msgpack4s wont be available via ``` resolvers += "velvia maven" at "http://dl.bintray.com/velvia/maven" libraryDependencies += "org.velvia" %% "msgpack4s" % "0.6.0" ```
Hi there, seems the artifacts can no longer be found. Would it be possible to publish them to Maven Central? Does this library work with Scala 3 as well?
@velvia I tried a super simple `App` using `play.api.libs.json.Json`: ```scala import org.velvia.msgpack import org.velvia.msgpack.PlayJsonCodecs.JsValueCodec import play.api.libs.json.{JsValue, Json} object Velvia extends App { val js: JsValue = Json.parse("""{"amount":40,"currency":"USD","label":"$40.00"}""") val p: Array[Byte]...