18 lines
715 B
Scala
18 lines
715 B
Scala
lazy val core = (project in file("core")).settings(
|
|
organization := "tf.bug",
|
|
name := "fancadetagless",
|
|
version := "0.1.0",
|
|
scalaVersion := "2.13.1",
|
|
libraryDependencies ++= Seq(
|
|
"org.scala-graph" %% "graph-core" % "1.13.2",
|
|
"com.chuusai" %% "shapeless" % "2.3.3",
|
|
"org.typelevel" %% "cats-core" % "2.1.1",
|
|
"org.typelevel" %% "cats-effect" % "2.1.2",
|
|
"io.chrisdavenport" %% "fuuid" % "0.3.0",
|
|
"tf.bug" %% "fancadescodec" % "0.1.1",
|
|
"tf.bug" %% "fancadegraph" % "0.1.0",
|
|
"org.scalameta" %% "munit" % "0.7.9" % Test,
|
|
),
|
|
testFrameworks += new TestFramework("munit.Framework"),
|
|
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.11.0" cross CrossVersion.full),
|
|
)
|