Skip to content

Commit

Permalink
Close #143 - Adopt Cats Effect
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-lee committed Jan 16, 2021
1 parent d12dccb commit 3559d3b
Show file tree
Hide file tree
Showing 8 changed files with 659 additions and 384 deletions.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ lazy val root = (project in file("."))
, scalaVersion.value
) {
case Some((2, 12)) =>
libs.javaxActivation212 ++ List(libs.cats)
libs.javaxActivation212 ++ List(libs.cats, libs.catsEffect, libs.effectie)
case Some((2, 10)) =>
Seq.empty
}
Expand Down Expand Up @@ -105,6 +105,10 @@ lazy val libs = new {

val cats: ModuleID = "org.typelevel" %% "cats-core" % "2.3.1"

val catsEffect: ModuleID = "org.typelevel" %% "cats-effect" % "2.3.1"

val effectie: ModuleID = "io.kevinlee" %% "effectie-cats-effect" % "1.7.0"

val semVer: ModuleID = "io.kevinlee" %% "just-semver" % "0.1.0"

val commonsIo: ModuleID = "commons-io" % "commons-io" % "2.1"
Expand Down

0 comments on commit 3559d3b

Please sign in to comment.