-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
42 lines (38 loc) · 1.4 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name := "PFPScala"
version := "0.1"
ThisBuild / scalaVersion := "2.13.8"
lazy val root = (project in file("."))
.settings(
name := "minimal",
libraryDependencies ++= Seq(
compilerPlugin(
"org.typelevel" %% "kind-projector" % "0.13.2"
cross CrossVersion.full
),
"org.typelevel" %% "cats-core" % "2.7.0",
"org.typelevel" %% "cats-effect" % "3.3.12",
"org.typelevel" %% "cats-mtl" % "1.2.0",
"com.github.cb372" %% "cats-retry" % "3.1.0",
"org.typelevel" %% "log4cats-core" % log4catsV, // Only if you want to Support Any Backend
"org.typelevel" %% "log4cats-slf4j" % log4catsV,
"org.typelevel" %% "squants" % "1.6.0",
"co.fs2" %% "fs2-core" % "3.0.3",
"dev.optics" %% "monocle-core" % monocleCoreV,
"dev.optics" %% "monocle-macro" % monocleCoreV,
"io.estatico" %% "newtype" % "0.4.4",
"eu.timepit" %% "refined" % refinedV,
"eu.timepit" %% "refined-cats" % refinedV,
"tf.tofu" %% "derevo-cats" % derevoV,
"tf.tofu" %% "derevo-cats-tagless" % derevoV,
"tf.tofu" %% "derevo-circe-magnolia" % derevoV,
"tf.tofu" %% "tofu-core-higher-kind" % "0.10.2"
),
scalacOptions ++= Seq(
"-Ymacro-annotations",
"-Wconf:cat=unused:info"
)
)
val derevoV = "0.12.5"
val log4catsV = "2.3.2"
val monocleCoreV = "3.0.0"
val refinedV = "0.9.25"