jsoniter-scala
jsoniter-scala copied to clipboard
Scala macros for compile-time generation of safe and ultra-fast JSON codecs
Hi, at the moment, jsoniter-scala doesn't store the generated macro code. Debugging using ``` implicit val printCodec: CodecMakerConfig.PrintCodec = new CodecMakerConfig.PrintCodec {} ``` is hard as this gets printed everywhere...
Hello! We're working on migrating from json4s to jsoniter-scala, and hitting an issue with inlining. We have a similar setup to #1078 , but instead of a nested object, it's...
Hey @plokhotnyuk I intended to open a Discussions question, but it's seemingly not enabled. I implemented a codec for upickle's Visitor. I wanted to see if you had interest in...
I was porting your schubfach implementation (it's very nice by the way so thank you for that) and encountered a case where I was seeing a write past the end...
## About this PR 📦 Updates * [org.json4s:json4s-jackson](https://github.com/json4s/json4s) * [org.json4s:json4s-native](https://github.com/json4s/json4s) from `4.1.0-M5` to `4.1.0-M6` 📜 [GitHub Release Notes](https://github.com/json4s/json4s/releases/tag/v4.1.0-M6) - [Version Diff](https://github.com/json4s/json4s/compare/v4.1.0-M5...v4.1.0-M6) ## Usage ✅ **Please merge!** I'll automatically update this...
Waiting a new release of circe after merging of [this PR](https://github.com/circe/circe/pull/2254)
It would be deisrable to handle union types, at least in some simple scenarios, like sealed class hierarchies are supported. Some examples: ```Scala Seq[Int|String|Date] ``` ```Scala Option[Int|String|Date|Double] ``` ```Scala String...
Hi, I'm writing a stream processing application that reads files from S3, gzips them, and processes the data. The files are in JSON lines format, meaning each line in the...
Hello, Is there a way I can choose which case class fields I want to appear in the resulting JSON as empty containers and which ones I don't want to...
I'm experimenting with Jsoniter-scala, and it has gone well in general. One thing that can be difficult, though, is custom deserializers. With the original Jsoniter, there is a very nice...