From c3aac517dd6c883e628b59a012b36b8c28ac35ac Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 8 Oct 2024 20:26:12 +0000 Subject: [PATCH] Update pekko-stream to 1.1.2 --- build.sbt | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/build.sbt b/build.sbt index 0c54aaa..f46abdc 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ val scala3Version = "3.5.0" val pekkoHttpVersion = "1.0.1" val uSerializationVersion = "4.0.1" -val pekkoVersion = "1.0.3" +val pekkoVersion = "1.1.2" val scalaReflectVersion = "2.13.14" val jTokkitVersion = "1.1.0" val munitVersion = "1.0.1" @@ -29,25 +29,20 @@ lazy val commonSettings = Seq( ), libraryDependencies ++= Seq( "org.scalameta" %% "munit" % munitVersion % Test, - "org.scalameta" %% "munit-scalacheck" % "1.0.0" % Test // TODO: Align with munitVersion, once released + "org.scalameta" %% "munit-scalacheck" % "1.0.0" % Test // TODO: Align with munitVersion, once released ) ) -lazy val syncodia = project - .in(file("core")) - .settings(commonSettings) - .settings( - name := "syncodia", - libraryDependencies ++= Seq( - "org.apache.pekko" %% "pekko-http" % pekkoHttpVersion, - "org.apache.pekko" %% "pekko-stream" % pekkoVersion, - "com.lihaoyi" %% "upickle" % uSerializationVersion, - "com.lihaoyi" %% "ujson" % uSerializationVersion, - "org.scala-lang" % "scala-reflect" % scalaReflectVersion, - "com.knuddels" % "jtokkit" % jTokkitVersion - ) +lazy val syncodia = project.in(file("core")).settings(commonSettings).settings( + name := "syncodia", + libraryDependencies ++= Seq( + "org.apache.pekko" %% "pekko-http" % pekkoHttpVersion, + "org.apache.pekko" %% "pekko-stream" % pekkoVersion, + "com.lihaoyi" %% "upickle" % uSerializationVersion, + "com.lihaoyi" %% "ujson" % uSerializationVersion, + "org.scala-lang" % "scala-reflect" % scalaReflectVersion, + "com.knuddels" % "jtokkit" % jTokkitVersion ) +) -lazy val examples = project - .settings(commonSettings) - .dependsOn(syncodia) +lazy val examples = project.settings(commonSettings).dependsOn(syncodia)