-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
20 lines (19 loc) · 927 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 := "ce3-async",
libraryDependencies ++= Seq(
// "core" module - IO, IOApp, schedulers
// This pulls in the kernel and std modules automatically.
"org.typelevel" %% "cats-effect" % "3.0.2",
// concurrency abstractions and primitives (Concurrent, Sync, Async etc.)
"org.typelevel" %% "cats-effect-kernel" % "3.0.2",
// standard "effect" library (Queues, Console, Random etc.)
"org.typelevel" %% "cats-effect-std" % "3.0.2",
// better monadic for compiler plugin as suggested by documentation
// compilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
"org.typelevel" %% "munit-cats-effect-3" % "1.0.1" % Test,
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
),
scalacOptions ++= List("-deprecation" , "-Xasync")
)