aqua/build.sbt

26 lines
949 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-03-15 11:45:27 +03:00
val monocleV = "3.0.0-M3"
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-03-18 15:51:22 +03:00
mainClass in (Compile, run) := Some("aqua.AquaGen"),
mainClass in assembly := Some("aqua.AquaGen"),
2021-02-01 16:17:46 +03:00
libraryDependencies ++= Seq(
2021-03-15 11:45:27 +03:00
"org.typelevel" %% "cats-effect" % "3.0.0-RC2",
"org.typelevel" %% "cats-parse" % "0.3.1",
"org.typelevel" %% "cats-free" % catsV,
"com.github.julien-truffaut" %% "monocle-core" % monocleV,
"com.github.julien-truffaut" %% "monocle-macro" % monocleV
2021-02-01 16:17:46 +03:00
),
2021-03-01 15:50:15 +03:00
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.5" % Test
2021-02-01 16:17:46 +03:00
)
2021-03-02 19:46:27 +03:00
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.11.3" cross CrossVersion.full)