Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use jawn parser on all platforms #890

Merged
merged 2 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ lazy val circe = crossProject(JVMPlatform, JSPlatform, NativePlatform)
name := "skunk-circe",
libraryDependencies ++= Seq(
"io.circe" %%% "circe-core" % "0.14.6",
"io.circe" %%% "circe-parser" % "0.14.6"
"io.circe" %%% "circe-jawn" % "0.14.6"
)
)

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