Skip to content

Commit

Permalink
Remove specs2-core dependency (close #39)
Browse files Browse the repository at this point in the history
  • Loading branch information
pondzix committed Feb 14, 2022
1 parent b620f2d commit 9c8896e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ lazy val root = project
Dependencies.cats,
Dependencies.catsEffect,
Dependencies.scaffeine,
Dependencies.scalaCheck,
Dependencies.specs2
Dependencies.scalaCheck
)
)
.settings(BuildSettings.publishSettings)
Expand Down
9 changes: 4 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
import sbt._

object Dependencies {
val cats = "org.typelevel" %% "cats-core" % "2.7.0"
val catsEffect = "org.typelevel" %% "cats-effect" % "3.3.5"
val scaffeine = "com.github.blemale" %% "scaffeine" % "5.1.2"
val scalaCheck = "org.scalacheck" %% "scalacheck" % "1.15.4" % Test
val specs2 = "org.specs2" %% "specs2-core" % "4.8.3" % Test
val cats = "org.typelevel" %% "cats-core" % "2.7.0"
val catsEffect = "org.typelevel" %% "cats-effect" % "3.3.5"
val scaffeine = "com.github.blemale" %% "scaffeine" % "5.1.2"
val scalaCheck = "org.scalacheck" %% "scalacheck" % "1.15.4" % Test
}

0 comments on commit 9c8896e

Please sign in to comment.