aqua/build.sbt

25 lines
620 B
Plaintext
Raw Normal View History

2021-02-24 18:57:41 +03:00
val dottyVersion = "2.13.5"
//val dottyVersion = "3.0.0-RC1"
2021-02-17 16:30:45 +03:00
2021-02-24 18:57:41 +03:00
val catsV = "2.4.2"
2021-02-01 16:17:46 +03:00
lazy val root = project
.in(file("."))
.settings(
name := "aqua-hll",
version := "0.1.0",
scalaVersion := dottyVersion,
mainClass in (Compile, run) := Some("aqua.Main"),
libraryDependencies ++= Seq(
2021-02-24 18:57:41 +03:00
"org.typelevel" %% "cats-effect" % "3.0.0-RC2",
"org.typelevel" %% "cats-parse" % "0.3.1",
2021-02-18 16:49:39 +03:00
"org.typelevel" %% "cats-free" % catsV
2021-02-01 16:17:46 +03:00
),
2021-02-18 16:49:39 +03:00
libraryDependencies += "org.scalactic" %% "scalactic" % "3.2.2" % Test,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.2" % Test
2021-02-01 16:17:46 +03:00
)