Skip to content
Open
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
15 changes: 8 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ lazy val root =
.disablePlugins(HeaderPlugin)
.settings(libraryDependencies := Nil)

val http4sVersion = "0.23.33"
val scalaXmlVersion = "2.2.0"
val fs2Version = "3.12.2"
val fs2DataVersion = "1.12.1"
val munitVersion = "1.0.0-M11"
val munitCatsEffectVersion = "2.1.0"
val http4sVersion = "0.23.34"
val scalaXmlVersion = "2.4.0"
val fs2Version = "3.13.0"
val fs2DataVersion = "1.14.0"
val munitVersion = "1.3.0"
val munitCatsEffectVersion = "2.2.0"
val circeVersion = "0.14.15"

lazy val xml = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.crossType(CrossType.Pure)
Expand Down Expand Up @@ -129,7 +130,7 @@ lazy val docs = project
.dependsOn(xml.jvm, xmlScala.jvm, csv.jvm, cbor.jvm, json.jvm)
.settings(
libraryDependencies ++= Seq(
"io.circe" %%% "circe-generic" % "0.14.15",
"io.circe" %%% "circe-generic" % circeVersion,
"org.http4s" %%% "http4s-dsl" % http4sVersion,
"org.http4s" %%% "http4s-circe" % http4sVersion,
"org.gnieh" %%% "fs2-data-csv-generic" % fs2DataVersion,
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
addSbtPlugin("org.http4s" % "sbt-http4s-org" % "2.0.6")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.20.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.21.0")

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.12")

addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")

Expand Down
Loading