Skip to content

Commit

Permalink
Use jawn parser on all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Jun 6, 2023
1 parent 22882c5 commit 5ac6acc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ lazy val circe = crossProject(JVMPlatform, JSPlatform, NativePlatform)
name := "skunk-circe",
libraryDependencies ++= Seq(
"io.circe" %%% "circe-core" % "0.14.5",
"io.circe" %%% "circe-parser" % "0.14.5"
"io.circe" %%% "circe-jawn" % "0.14.5"
)
)

Expand Down
2 changes: 1 addition & 1 deletion modules/circe/src/main/scala/JsonCodecs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package circe.codec

import cats.syntax.all._
import io.circe.{ Json, Encoder => CEncoder, Decoder => CDecoder }
import io.circe.parser.parse
import io.circe.jawn.parse
import skunk.data.Type

trait JsonCodecs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package tests
package codec
import io.circe.Json
import io.circe.parser.parse
import io.circe.jawn.parse
import skunk._
import skunk.circe.codec.all._

Expand Down

0 comments on commit 5ac6acc

Please sign in to comment.