From 0335878bd63b9bc650ff153a7b661b111b8a6a92 Mon Sep 17 00:00:00 2001 From: Michael Pilquist Date: Fri, 29 Nov 2024 09:50:30 -0500 Subject: [PATCH] Downgrade circe due to lack of native 0.5 support --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 8d1bb449..ae995fc5 100644 --- a/build.sbt +++ b/build.sbt @@ -155,8 +155,8 @@ lazy val circe = crossProject(JVMPlatform, JSPlatform, NativePlatform) .settings( name := "skunk-circe", libraryDependencies ++= Seq( - "io.circe" %%% "circe-core" % "0.14.10", - "io.circe" %%% "circe-jawn" % "0.14.10" + "io.circe" %%% "circe-core" % "0.14.8", + "io.circe" %%% "circe-jawn" % "0.14.8" ) )