aqua/build.sbt

23 lines
742 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",
2021-03-02 19:46:27 +03:00
"org.typelevel" %% "cats-free" % catsV,
"com.chuusai" %% "shapeless" % "2.3.3"
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)