-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.sbt
More file actions
34 lines (24 loc) · 925 Bytes
/
Copy pathbuild.sbt
File metadata and controls
34 lines (24 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// build.sbt
name := "ML-GA"
version := "0.1-SNAPSHOT"
scalacOptions ++= Seq(
"-unchecked", "-deprecation", "-feature", "-language:higherKinds",
"-language:implicitConversions", "-Ykind-projector:underscores"
)
enablePlugins(MdocPlugin)
mdocOut := file("md/")
libraryDependencies ++= Seq(
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.scalameta" %% "munit-scalacheck" % "0.7.29" % Test,
"org.typelevel" %% "discipline-munit" % "1.0.9" % Test,
"org.scalanlp" %% "breeze" % "2.1.0",
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4",
("com.github.haifengl" %% "smile-scala" % "3.0.0").cross(CrossVersion.for3Use2_13),
"org.typelevel" %% "cats-core" % "2.8.0",
"org.typelevel" %% "cats-free" % "2.8.0",
"org.typelevel" %% "cats-laws" % "2.8.0",
"org.typelevel" %% "cats-effect" % "3.2.2",
"org.typelevel" %% "discipline-core" % "1.1.5"
)
scalaVersion := "3.3.0"
// eof