mirror of
https://github.com/fluencelabs/aqua.git
synced 2025-04-24 22:42:13 +00:00
20 lines
448 B
Plaintext
20 lines
448 B
Plaintext
|
val dottyVersion = "2.13.4"
|
||
|
|
||
|
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"
|
||
|
),
|
||
|
|
||
|
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
|
||
|
)
|