Skip to content
Closed
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
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lazy val catsVersion = "2.6.1"
lazy val catsEffectVersion = "3.2.9"

lazy val logbackVersion = "1.2.3"
lazy val cassandraDriverExtrasVersion = "3.8.0"
lazy val cassandraDriverExtrasVersion = "3.11.3"
lazy val jsr305Version = "3.0.2"
lazy val boopickleVersion = "1.3.1"
lazy val monocleVersion = "2.1.0"
Expand Down Expand Up @@ -42,8 +42,10 @@ lazy val catsMTLVersion = "0.7.1"
lazy val commonSettings = Seq(
scalacOptions += "-Xsource:2.13",
scalacOptions ~= { opts => opts.filterNot(Set("-Xlint:nullary-override")) },
libraryDependencies ++= Seq(
compilerPlugin("org.typelevel" % "kind-projector" % kindProjectorVersion cross CrossVersion.full)
libraryDependencies ++= Seq(
compilerPlugin(
"org.typelevel" % "kind-projector" % kindProjectorVersion cross CrossVersion.full
)
),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % betterMonadicForVersion),
parallelExecution in Test := false
Expand Down