Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class SyntaxSpec extends FunSuite {
}
}
val service = new Service[Int]
service.withCollectorRegistry(CollectorRegistry.empty)
service.withCollectorRegistry(CollectorRegistry.empty[F])
}

test("measureTotalDuration on a stream of numbers") {
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import sbt.*

object Dependencies {

val catsHelper = "com.evolutiongaming" %% "cats-helper" % "3.12.0"
val catsHelperLogback = "com.evolutiongaming" %% "cats-helper-logback" % "3.12.0"
val smetrics = "com.evolutiongaming" %% "smetrics" % "2.3.5"
val catsHelper = "com.evolutiongaming" %% "cats-helper" % "3.12.2"
val catsHelperLogback = "com.evolutiongaming" %% "cats-helper-logback" % "3.12.2"
val smetrics = "com.evolutiongaming" %% "smetrics" % "2.4.3"
val scache = "com.evolution" %% "scache" % "5.1.4"
val skafka = "com.evolutiongaming" %% "skafka" % "18.0.0"
val sstream = "com.evolutiongaming" %% "sstream" % "1.1.0"
val scassandra = "com.evolutiongaming" %% "scassandra" % "5.3.0"
val scassandra = "com.evolutiongaming" %% "scassandra" % "5.4.0"
val cassandraSync = "com.evolutiongaming" %% "cassandra-sync" % "4.0.0"
val random = "com.evolution" %% "random" % "1.0.5"
val retry = "com.evolutiongaming" %% "retry" % "3.1.0"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ libraryDependencySchemes ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % "always"
)

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.3")

addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.15")

Expand Down
Loading