Skip to content

Commit 822e888

Browse files
committed
remove unneeded deps
1 parent 2bbb4e9 commit 822e888

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

build.sbt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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",

project/Dependencies.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@ import sbt.*
22
object 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",

0 commit comments

Comments
 (0)