-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 lines (29 loc) · 833 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
name := "purepy"
version := "0.1"
scalaVersion := "2.12.4"
scalacOptions ++= Seq (
"-Xfatal-warnings",
"-Xfuture",
"-Xlint",
"-Yno-adapted-args",
"-Ypartial-unification",
"-Ywarn-macros:after",
"-Ywarn-unused:explicits,-implicits",
"-Ywarn-unused-import",
"-Ywarn-value-discard",
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-unchecked")
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "1.0.1",
"org.typelevel" %% "cats-free" % "1.0.1",
"org.typelevel" %% "cats-effect" % "0.9",
"org.scalacheck" %% "scalacheck" % "1.13.5",
"black.ninia" % "jep" % "3.7.1",
"com.chuusai" %% "shapeless" % "2.3.3",
"org.scalatest" %% "scalatest" % "3.0.1" % Test
)
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.6")