-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
28 lines (23 loc) · 882 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
name := "comonadic_life"
version := "0.1"
scalaVersion := "2.12.9"
scalacOptions ++= Seq(
"-deprecation",
"-encoding", "utf-8",
"-language:existentials",
"-language:experimental.macros",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Ypartial-unification",
"-Ywarn-numeric-widen"
)
scalacOptions in (Compile, console) --= Seq("-Ywarn-unused:imports", "-Xfatal-warnings")
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
"org.scalactic" %% "scalactic" % "3.0.8",
"org.typelevel" %% "cats-effect" % "2.0.0",
"co.fs2" %% "fs2-core" % "2.1.0",
"com.lihaoyi" %% "pprint" % "0.5.6"
)
mainClass in (Compile, run) := Some("conway.Main")