Skip to content

Commit

Permalink
More fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Oct 31, 2023
1 parent 653cc0d commit 1fabeea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ val munitCatsEffectV = "2.0.0-M3"

val emberServer = Seq(
"org.http4s" %% "http4s-ember-server" % http4sV,
"org.http4s" %% "http4s-dsl" % http4sV
"org.http4s" %% "http4s-dsl" % http4sV,
"org.typelevel" %% "log4cats-noop" % log4catsV
)

val coreDeps = Seq(
Expand All @@ -66,8 +67,7 @@ val coreDeps = Seq(
) ++ (emberServer ++ Seq(
"org.http4s" %% "http4s-client-testkit" % http4sV,
"org.scalameta" %% "munit" % munitV,
"org.typelevel" %% "munit-cats-effect" % munitCatsEffectV,
"org.typelevel" %% "log4cats-noop" % log4catsV
"org.typelevel" %% "munit-cats-effect" % munitCatsEffectV
)).map(_ % Test)

val scala213 = "2.13.10"
Expand Down
5 changes: 5 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,11 @@ import org.http4s.dsl.io._
import org.http4s.implicits._
import org.http4s.ember.server.EmberServerBuilder
import com.comcast.ip4s._
import org.typelevel.log4cats.LoggerFactory
import org.typelevel.log4cats.noop.NoOpFactory

implicit val loggerFactor: LoggerFactory[IO] = NoOpFactory[IO]

val echoServer = EmberServerBuilder.default[IO]
.withPort(port"0")
.withHttpWebSocketApp(wsb => HttpRoutes.of[IO] {
Expand Down

0 comments on commit 1fabeea

Please sign in to comment.