-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
36 lines (31 loc) · 959 Bytes
/
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
import sbt.Global
/*****************************************************************
Global Settings & Configs
*****************************************************************/
name := "tydal"
version := "1.3.12"
organization := "epifab.io"
exportJars := true
parallelExecution := false
scalaVersion := "2.13.8"
crossScalaVersions := Seq("2.13.1")
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-feature",
"-Xfatal-warnings",
"-language:existentials",
"-language:higherKinds",
"-Ystatistics:typer",
)
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.7.0",
"org.typelevel" %% "cats-effect" % "3.3.12",
"com.chuusai" %% "shapeless" % "2.3.9",
"io.circe" %% "circe-core" % "0.14.2",
"io.circe" %% "circe-generic" % "0.14.2",
"io.circe" %% "circe-parser" % "0.14.2",
"org.postgresql" % "postgresql" % "42.3.6",
"com.zaxxer" % "HikariCP" % "5.0.1",
"org.scalatest" %% "scalatest" % "3.2.12" % Test
)