aqua/build.sbt

30 lines
1.2 KiB
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-22 17:10:38 +03:00
mainClass in (Compile, run) := Some("aqua.Main"),
mainClass in assembly := Some("aqua.Main"),
2021-03-19 12:40:27 +03:00
assemblyJarName in assembly := "aqua-hll.jar",
2021-02-01 16:17:46 +03:00
libraryDependencies ++= Seq(
2021-03-24 13:17:02 +03:00
"com.github.scopt" %% "scopt" % "4.0.1",
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,
2021-03-19 11:30:55 +03:00
"com.github.julien-truffaut" %% "monocle-macro" % monocleV,
"co.fs2" %% "fs2-core" % "3.0.0-M7",
2021-03-19 12:40:27 +03:00
"co.fs2" %% "fs2-io" % "3.0.0-M7",
"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)