mirror of
https://github.com/fluencelabs/aqua.git
synced 2025-03-30 10:41:04 +00:00
26 lines
643 B
Scala
26 lines
643 B
Scala
val dottyVersion = "2.13.4"
|
|
//val dottyVersion = "3.0.0-M3"
|
|
|
|
val catsV = "2.3.1"
|
|
val monocleV = "3.0.0-M1"
|
|
|
|
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(
|
|
"org.typelevel" %% "cats-effect" % "3.0.0-M5",
|
|
"org.typelevel" %% "cats-parse" % "0.3.0",
|
|
"org.typelevel" %% "cats-free" % catsV//,
|
|
//"com.github.julien-truffaut" %% "monocle-core" % monocleV
|
|
),
|
|
|
|
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
|
|
)
|