File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,10 @@ lazy val root = project
55 .in(file(" ." ))
66 .settings(
77 name := " log-http-proxy" ,
8- version := " 0.2.1 " ,
8+ version := " 0.2.2 " ,
99 scalaVersion := scala3Version,
10- mainClass := Some (" Main" ),
1110 libraryDependencies ++=
12- tapir ++ logLib ++ httpClient ++ configLib ++
11+ tapir ++ logLib ++ configLib ++
1312 Seq (
1413 " com.lihaoyi" %% " mainargs" % " 0.7.6" ,
1514 " com.github.pathikrit" %% " better-files" % " 3.9.2" ,
Original file line number Diff line number Diff line change @@ -2,23 +2,23 @@ import sbt.*
22object Dependencies {
33
44 lazy val logLib = Seq (
5- " com.typesafe.scala-logging" %% " scala-logging" % " 3.9.5" ,
5+ // "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
66 " ch.qos.logback" % " logback-classic" % " 1.5.18" ,
77 )
88
99 lazy val httpClient = {
10- val version = " 4.0.8 "
10+ val version = " 4.0.9 "
1111 Seq (
1212 " com.softwaremill.sttp.client4" %% " core" % version,
1313 " com.softwaremill.sttp.client4" %% " circe" % version,
1414 " com.softwaremill.sttp.client4" %% " pekko-http-backend" % version,
15- " com.softwaremill.sttp.client4" %% " slf4j-backend" % version,
16- " org.bouncycastle" % " bcpkix-jdk18on" % " 1.81" ,
15+ // "com.softwaremill.sttp.client4" %% "slf4j-backend" % version,
16+ // "org.bouncycastle" % "bcpkix-jdk18on" % "1.81",
1717 )
1818 }
1919
2020 lazy val tapir = {
21- val version = " 1.11.33 "
21+ val version = " 1.11.34 "
2222 val circeVersion = " 0.14.9"
2323 Seq (
2424 " io.circe" %% " circe-core" ,
You can’t perform that action at this time.
0 commit comments