Skip to content
Closed
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ object Dependencies {
val ZioParserVersion = "0.1.10"
val ZioSchemaVersion = "1.7.5"
val SttpVersion = "3.3.18"
val ZioConfigVersion = "4.0.5"
val ZioConfigVersion = "4.0.6"

val `jwt-core` = "com.github.jwt-scala" %% "jwt-core" % JwtCoreVersion
val `jwt-zio-json` = "com.github.jwt-scala" %% "jwt-zio-json" % JwtCoreVersion
Expand All @@ -36,8 +36,8 @@ object Dependencies {

val unroll = Seq(
"com.lihaoyi" %% "unroll-annotation" % "0.1.12",
"com.lihaoyi" %% "unroll-plugin" % "0.1.12"
)
"com.lihaoyi" %% "unroll-plugin" % "0.1.12",
)

val zio = "dev.zio" %% "zio" % ZioVersion
val `zio-cli` = "dev.zio" %% "zio-cli" % ZioCliVersion
Expand Down
8 changes: 4 additions & 4 deletions zio-http-example-webauthn/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ scalaVersion := "2.13.17"

publish / skip := true
publishArtifact := false
run / fork := true
run / fork := true

libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "2.1.22",
"dev.zio" %% "zio-http" % "3.5.1",
"dev.zio" %% "zio-config" % "4.0.5",
"dev.zio" %% "zio" % "2.1.22",
"dev.zio" %% "zio-http" % "3.5.1",
"dev.zio" %% "zio-config" % "4.0.6",
"com.yubico" % "webauthn-server-core" % "2.7.0",
"com.yubico" % "webauthn-server-attestation" % "2.7.0",
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using dep "dev.zio::zio-http:3.4.0"
//> using dep "dev.zio::zio-config-typesafe:4.0.5"
//> using dep "dev.zio::zio-config-typesafe:4.0.6"

package example

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using dep "dev.zio::zio-http:3.4.0"
//> using dep "dev.zio::zio-config-typesafe:4.0.5"
//> using dep "dev.zio::zio-config-typesafe:4.0.6"

package example.config

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//> using dep "dev.zio::zio-http:3.4.0"
//> using dep "dev.zio::zio-config:4.0.5"
//> using dep "dev.zio::zio-config-typesafe:4.0.5"
//> using dep "dev.zio::zio-config:4.0.6"
//> using dep "dev.zio::zio-config-typesafe:4.0.6"

package example.config

Expand Down
Loading