Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update fs2-io, fs2-reactive-streams to 3.9.3 #235

Closed
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
11 changes: 5 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ lazy val commonSettings = Seq(
"-Xlint:poly-implicit-overload", // Parameterized overloaded implicit methods are not visible as view bounds.
"-Xlint:private-shadow", // A private field (or class parameter) shadows a superclass field.
"-Xlint:stars-align", // Pattern sequence wildcard must align with sequence component.
"-Xlint:type-parameter-shadow", // A local type parameter shadows a type already in scope.
"-Xlint:type-parameter-shadow" // A local type parameter shadows a type already in scope.
// "-Ywarn-extra-implicit", // Warn when more than one implicit parameter section is defined.
// "-Ywarn-numeric-widen", // Warn when numerics are widened.
// "-Ywarn-unused:implicits", // Warn if an implicit parameter is unused.
Expand All @@ -73,7 +73,7 @@ lazy val akkaVersion = "2.6.19"
lazy val shapelessVersion = "2.3.10"
lazy val http4sVersion = "0.23.23"
lazy val scribeVersion = "3.12.2"
lazy val fs2Version = "3.8.0"
lazy val fs2Version = "3.9.3"

lazy val shared = crossProject(JSPlatform, JVMPlatform)
.crossType(sbtcrossproject.CrossPlugin.autoImport.CrossType.Pure)
Expand Down Expand Up @@ -123,7 +123,6 @@ lazy val core = project
.settings(commonSettings: _*)
.settings(
name := "tasks-core",

libraryDependencies ++= Seq(
"co.fs2" %% "fs2-io" % fs2Version,
"co.fs2" %% "fs2-reactive-streams" % fs2Version,
Expand Down Expand Up @@ -235,9 +234,9 @@ lazy val example = project
libraryDependencies ++= Seq(
"com.github.plokhotnyuk.jsoniter-scala" %%% "jsoniter-scala-macros" % jsoniterVersion % "compile-internal"
) ++ Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion ,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion ,
"com.typesafe.akka" %% "akka-remote" % akkaVersion
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion
)
)

Expand Down
Loading