-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
22 lines (18 loc) · 861 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
name := "cats-sandbox"
version := "0.0.1-SNAPSHOT"
scalaVersion := "2.12.7"
scalacOptions ++= Seq(
"-encoding", "UTF-8", // source files are in UTF-8
"-deprecation", // warn about use of deprecated APIs
"-unchecked", // warn about unchecked type parameters
"-feature", // warn about misused language features
"-language:higherKinds",// allow higher kinded types without `import scala.language.higherKinds`
"-Xlint", // enable handy linter warnings
"-Xfatal-warnings", // turn compiler warnings into errors
"-Ypartial-unification" // allow the compiler to unify type constructors of different arities
)
libraryDependencies ++=
Seq(
"org.typelevel" %% "cats-core" % "1.4.0",
"org.scalatest" %% "scalatest" % "3.0.1")
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.3")