Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
44 lines (35 sloc)
1.73 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sbt._ | |
object Dependencies { | |
val zio = "dev.zio" %% "zio" % Version.zio | |
val zioCats = ("dev.zio" %% "zio-interop-cats" % Version.zioCats).excludeAll(ExclusionRule("dev.zio")) | |
val zioMacros = "dev.zio" %% "zio-macros" % Version.zio | |
val zioTest = "dev.zio" %% "zio-test" % Version.zio % "test" | |
val zioTestSbt = "dev.zio" %% "zio-test-sbt" % Version.zio % "test" | |
val fs2Core = "co.fs2" %% "fs2-core" % Version.fs2Core | |
val doobieCore = "org.tpolecat" %% "doobie-core" % Version.doobie | |
val doobieH2 = "org.tpolecat" %% "doobie-h2" % Version.doobie | |
val doobieHikari = "org.tpolecat" %% "doobie-hikari" % Version.doobie | |
val doobie = List(doobieCore, doobieH2, doobieHikari) | |
val flyway = "org.flywaydb" % "flyway-core" % Version.flyway | |
val h2 = "com.h2database" % "h2" % Version.h2 | |
val circeGeneric = "io.circe" %% "circe-generic" % Version.circe | |
val circeCore = "io.circe" %% "circe-core" % Version.circe | |
val circeParser = "io.circe" %% "circe-parser" % Version.circe | |
val circeExtras = "io.circe" %% "circe-generic-extras" % Version.circe | |
val circe = List(circeGeneric, circeCore, circeParser, circeExtras) | |
val slf4j = "org.slf4j" % "slf4j-simple" % Version.slf4j | |
val canoe = "org.augustjune" %% "canoe" % Version.canoe | |
val pureconfig = "com.github.pureconfig" %% "pureconfig" % Version.pureconfig | |
} | |
object Version { | |
val zio = "1.0.15" | |
val zioCats = "2.5.1.0" | |
val slf4j = "1.7.36" | |
val fs2Core = "2.5.11" | |
val canoe = "0.5.1" | |
val circe = "0.14.1" | |
val doobie = "0.13.4" | |
val h2 = "2.1.214" | |
val flyway = "8.5.13" | |
val pureconfig = "0.17.1" | |
} |