-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDependencies.scala
34 lines (32 loc) · 1.54 KB
/
Dependencies.scala
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
import sbt._
object Dependencies {
lazy val catsCore = "org.typelevel" %% "cats-core" % "2.12.0"
lazy val catsEffect = "org.typelevel" %% "cats-effect" % "2.5.5"
lazy val catsMtl = "org.typelevel" %% "cats-mtl-core" % "0.7.1"
lazy val circeCore = "io.circe" %% "circe-core" % "0.14.9"
lazy val circeLiteral =
"io.circe" %% "circe-literal" % "0.14.9" // used for test only
lazy val circeParser =
"io.circe" %% "circe-parser" % "0.14.9" // used for site only
lazy val diffx = "com.softwaremill.diffx" %% "diffx-scalatest" % "0.9.0"
lazy val diffxShould =
"com.softwaremill.diffx" %% "diffx-scalatest-should" % "0.9.0"
lazy val logback = "ch.qos.logback" % "logback-classic" % "1.5.6"
lazy val logstash =
"net.logstash.logback" % "logstash-logback-encoder" % "8.0"
lazy val kindProjector =
"org.typelevel" %% "kind-projector" % "0.13.3" cross CrossVersion.full
lazy val magnolia = "com.propensive" %% "magnolia" % "0.17.0"
lazy val libmdoc =
"org.scalameta" %% "mdoc" % "2.3.5" excludeAll (ExclusionRule(
organization = "org.slf4j"
))
lazy val monixDependency = "io.monix" %% "monix" % "3.4.1"
lazy val scalaCollectionCompat =
"org.scala-lang.modules" %% "scala-collection-compat" % "2.12.0"
lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19"
lazy val slf4jDepedency = "org.slf4j" % "slf4j-api" % "2.0.13"
lazy val sourcecode = "com.lihaoyi" %% "sourcecode" % "0.4.2"
lazy val zioDependency = "dev.zio" %% "zio" % "2.1.10"
lazy val zioInterop = "dev.zio" %% "zio-interop-cats" % "2.2.0.1"
}