Skip to content
Open
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
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ val V = new {
val scalatest = "3.2.20"
val scalacheck = "1.19.0"
val http4s = "0.23.34"
val doobie = "1.0.0-RC12"
val doobie = "1.0.0-RC13"
val catsCore = "2.13.0"
val zio = "2.1.26"
val zioCats = "23.1.0.13"
val kindProjector = "0.13.4"
val circeGeneric = "0.14.15"
val graalMetadata = "1.1.1"
val graalMetadata = "1.1.2"
val catsEffect = "3.5.4"
}

Expand All @@ -37,9 +37,9 @@ val Deps = new {

val circeGeneric = "io.circe" %% "circe-generic" % V.circeGeneric

val doobie = "org.tpolecat" %% "doobie-core" % V.doobie
val doobiePostgres = "org.tpolecat" %% "doobie-postgres" % V.doobie
val doobieHikari = "org.tpolecat" %% "doobie-hikari" % V.doobie
val doobie = "org.typelevel" %% "doobie-core" % V.doobie
val doobiePostgres = "org.typelevel" %% "doobie-postgres" % V.doobie
val doobieHikari = "org.typelevel" %% "doobie-hikari" % V.doobie

val kindProjector = "org.typelevel" % "kind-projector" % V.kindProjector cross CrossVersion.full

Expand Down Expand Up @@ -76,8 +76,8 @@ val Deps = new {

inThisBuild(
Seq(
crossScalaVersions := Seq("2.13.18", "3.3.7"),
// crossScalaVersions := Seq("3.3.7", "2.13.18"), // uncomment to use Scala 3 in IDE
crossScalaVersions := Seq("2.13.18", "3.3.8"),
// crossScalaVersions := Seq("3.3.8", "2.13.18"), // uncomment to use Scala 3 in IDE
scalaVersion := crossScalaVersions.value.head,
version := "1.0.0",
organization := "io.7mind",
Expand Down
Loading