scalapb-json / scalapb-argonaut

Json/Protobuf convertors for ScalaPB use argonaut

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

scalapb-argonaut

scaladoc

The structure of this project is hugely inspired by scalapb-json4s

Dependency

Include in your build.sbt file

core

libraryDependencies += "io.github.scalapb-json" %% "scalapb-argonaut" % "0.11.0"

for scala-js

libraryDependencies += "io.github.scalapb-json" %%% "scalapb-argonaut" % "0.11.0"

macros

libraryDependencies += "io.github.scalapb-json" %%% "scalapb-argonaut-macros" % "0.11.0"

Usage

There are four functions you can use directly to serialize/deserialize your messages:

JsonFormat.toJsonString(msg) // returns String
JsonFormat.toJson(msg) // returns Json

JsonFormat.fromJsonString(str) // return MessageType
JsonFormat.fromJson(json) // return MessageType

Credits

About

Json/Protobuf convertors for ScalaPB use argonaut

License:MIT License


Languages

Language:Scala 100.0%