Skip to content

Commit

Permalink
Fix #669 Add a non-Optional dependency on cats-core for interop-cats (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
neko-kai authored Oct 5, 2023
1 parent e196bb6 commit b49e9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ lazy val zioTestInteropCats = crossProject(JSPlatform, JVMPlatform)
"co.fs2" %%% "fs2-core" % fs2Version
)
val optLibraries = if (scalaVersion.value.startsWith("3")) optLibraries0 else optLibraries0.map(_ % Optional)
("dev.zio" %%% "zio" % zioVersion) :: optLibraries
("dev.zio" %%% "zio" % zioVersion) :: ("org.typelevel" %%% "cats-core" % catsVersion) :: optLibraries
},
libraryDependencies ++= Seq(
"dev.zio" %%% "zio-test-sbt" % zioVersion,
Expand Down

0 comments on commit b49e9d2

Please sign in to comment.