aqua/build.sbt

21 lines
677 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(
2021-03-01 15:50:15 +03:00
name := "aqua-hll",
version := "0.1.0",
scalaVersion := dottyVersion,
2021-02-01 16:17:46 +03:00
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",
2021-03-01 15:50:15 +03:00
"org.typelevel" %% "cats-parse" % "0.3.1",
"org.typelevel" %% "cats-free" % catsV
2021-02-01 16:17:46 +03:00
),
2021-03-01 15:50:15 +03:00
libraryDependencies += "org.scalactic" %% "scalactic" % "3.2.5" % Test,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.5" % Test
2021-02-01 16:17:46 +03:00
)