|
@@ -2,7 +2,7 @@ name := "http4s"
|
|
|
|
|
|
version := "1.0"
|
|
|
|
|
|
-scalaVersion := "2.13.6"
|
|
|
+scalaVersion := "2.13.7"
|
|
|
|
|
|
scalacOptions ++= Seq(
|
|
|
"-deprecation",
|
|
@@ -13,12 +13,13 @@ scalacOptions ++= Seq(
|
|
|
"-language:reflectiveCalls",
|
|
|
"-Ywarn-numeric-widen",
|
|
|
"-target:11",
|
|
|
+ "-Xlint:-byname-implicit",
|
|
|
"-Xlint"
|
|
|
)
|
|
|
|
|
|
enablePlugins(SbtTwirl)
|
|
|
|
|
|
-val http4sVersion = "0.23.1"
|
|
|
+val http4sVersion = "0.23.6"
|
|
|
|
|
|
assembly / assemblyMergeStrategy := {
|
|
|
case PathList(xs @ _*) if xs.last == "io.netty.versions.properties" => MergeStrategy.rename
|
|
@@ -32,9 +33,9 @@ libraryDependencies ++= Seq(
|
|
|
"org.http4s" %% "http4s-circe" % http4sVersion,
|
|
|
// Optional for auto-derivation of JSON codecs
|
|
|
"io.circe" %% "circe-generic" % "0.14.1",
|
|
|
- "org.typelevel" %% "cats-effect" % "3.2.2",
|
|
|
- "co.fs2" %% "fs2-core" % "3.1.0",
|
|
|
- "co.fs2" %% "fs2-io" % "3.1.0",
|
|
|
+ "org.typelevel" %% "cats-effect" % "3.3.0",
|
|
|
+ "co.fs2" %% "fs2-core" % "3.2.2",
|
|
|
+ "co.fs2" %% "fs2-io" % "3.2.2",
|
|
|
"io.getquill" %% "quill-jasync-postgres" % "3.9.0",
|
|
|
"io.getquill" %% "quill-jasync" % "3.9.0",
|
|
|
"ch.qos.logback" % "logback-classic" % "1.2.5"
|