2019-04-29 20:05:41 +01:00
|
|
|
name := "s3thorp"
|
|
|
|
|
|
|
|
version := "0.1"
|
|
|
|
|
2019-04-29 20:19:04 +01:00
|
|
|
scalaVersion := "2.12.8"
|
|
|
|
|
|
|
|
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.7" % "test"
|
2019-05-05 19:28:11 +01:00
|
|
|
libraryDependencies += "org.typelevel" %% "cats-effect" % "1.3.0" withSources() withJavadoc()
|
2019-04-29 20:19:21 +01:00
|
|
|
|
2019-05-05 19:28:52 +01:00
|
|
|
scalacOptions ++= Seq(
|
|
|
|
"-feature",
|
|
|
|
"-deprecation",
|
|
|
|
"-unchecked",
|
|
|
|
"-language:postfixOps",
|
|
|
|
"-language:higherKinds",
|
|
|
|
"-Ypartial-unification")
|
|
|
|
|