File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
http4s-lambda-zio/src/main/scala/io/github/howardjohn/lambda/http4szio Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ inThisBuild(List(
4545
4646lazy val CirceVersion = " 0.12.1"
4747lazy val ScalaTestVersion = " 3.1.0"
48- lazy val Http4sVersion = " 0.21.0-M5 "
48+ lazy val Http4sVersion = " 0.21.15 "
4949
5050lazy val common = project
5151 .in(file(" common" ))
@@ -105,8 +105,8 @@ lazy val http4sZio = project
105105 " org.scalatest" %% " scalatest" % ScalaTestVersion % " test" ,
106106 " org.http4s" %% " http4s-dsl" % Http4sVersion % " test" ,
107107 " org.http4s" %% " http4s-circe" % Http4sVersion % " test" ,
108- " dev.zio" %% " zio" % " 1.0.0-RC14 " ,
109- " dev.zio" %% " zio-interop-cats" % " 2.0.0.0-RC5 "
108+ " dev.zio" %% " zio" % " 1.0.1 " ,
109+ " dev.zio" %% " zio-interop-cats" % " 2.1.4.0 "
110110 )
111111 }
112112 )
Original file line number Diff line number Diff line change @@ -4,10 +4,12 @@ import io.github.howardjohn.lambda.ProxyEncoding._
44import io .github .howardjohn .lambda .http4s .Http4sLambdaHandlerK
55import org .http4s ._
66import zio ._
7+ import zio .Runtime
8+ import zio .internal .Platform
79import zio .interop .catz ._
810
911class Http4sLambdaHandlerZIO (val service : HttpRoutes [Task ]) extends Http4sLambdaHandlerK [Task ] {
10- val runtime : DefaultRuntime = new DefaultRuntime {}
12+ val runtime = Runtime .default
1113
1214 def handleRequest (request : ProxyRequest ): ProxyResponse =
1315 parseRequest(request)
Original file line number Diff line number Diff line change 1- sbt.version =1.3 .3
1+ sbt.version =1.4 .3
You can’t perform that action at this time.
0 commit comments