-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sbt
20 lines (19 loc) · 921 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ThisBuild / organization := "com.example"
ThisBuild / scalaVersion := "2.13.5"
lazy val root = (project in file(".")).settings(
name := "concurrent-sudoku-solver",
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4",
// "core" module - IO, IOApp, schedulers
// This pulls in the kernel and std modules automatically.
"org.typelevel" %% "cats-effect" % "3.3.5",
// concurrency abstractions and primitives (Concurrent, Sync, Async etc.)
"org.typelevel" %% "cats-effect-kernel" % "3.3.5",
// standard "effect" library (Queues, Console, Random etc.)
"org.typelevel" %% "cats-effect-std" % "3.3.5",
// better monadic for compiler plugin as suggested by documentation
compilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
"co.fs2" %% "fs2-core" % "3.2.5",
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test
)
)