-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
22 lines (18 loc) · 930 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name := "mermaid-serde"
version := "0.1"
scalaVersion := "2.13.7"
libraryDependencies += "com.lihaoyi" %% "fastparse" % "2.3.3"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.10" % "test"
libraryDependencies ++= Seq(
"eu.timepit" %% "refined" % "0.9.28"
// "eu.timepit" %% "refined-cats" % "0.9.28", // optional
// "eu.timepit" %% "refined-eval" % "0.9.28", // optional, JVM-only
// "eu.timepit" %% "refined-jsonpath" % "0.9.28", // optional, JVM-only
// "eu.timepit" %% "refined-pureconfig" % "0.9.28", // optional, JVM-only
// "eu.timepit" %% "refined-scalacheck" % "0.9.28", // optional
// "eu.timepit" %% "refined-scalaz" % "0.9.28", // optional
// "eu.timepit" %% "refined-scodec" % "0.9.28", // optional
// "eu.timepit" %% "refined-scopt" % "0.9.28", // optional
// "eu.timepit" %% "refined-shapeless" % "0.9.28" // optional
)
libraryDependencies += "com.lihaoyi" %% "pprint" % "0.7.1" % Test