spray / spray-json

A lightweight, clean and simple JSON implementation in Scala
Apache License 2.0
969 stars 190 forks source link

What are your plans for spray-json regarding Scala 3? #339

Closed informarte closed 3 years ago

raboof commented 3 years ago

a quick attempt (https://github.com/raboof/spray-json-on-scala3) suggests the current 2.13 artifacts seem to work OK on Scala 3 - are you aware of any limitations?

informarte commented 3 years ago

mill dependency: ivy"io.spray::spray-json:1.3.5".withDottyCompat(scalaVersion())

paoloboni commented 3 years ago

not strictly related to the plans for spray-json on Scala 3 - but in case you want to use it on Scala 3, the library spray-json-derived-codecs allows you to derive JsonFormats using Scala 3 type class derivation

informarte commented 3 years ago

Thanks everyone for answers and pointers!