-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
25 lines (23 loc) · 1.38 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.8"
lazy val root = project
.in(file("."))
.settings(
name := "inject-context",
libraryDependencies := Seq(
"com.datadoghq" % "dd-trace-ot" % "1.10.0",
"com.softwaremill.sttp.client3" %% "async-http-client-backend-zio" % "3.8.11",
"com.softwaremill.sttp.client3" %% "zio" % "3.8.11",
"com.softwaremill.sttp.client3" %% "zio-json" % "3.8.11",
"com.softwaremill.sttp.tapir" %% "tapir-json-zio" % "1.2.9",
"com.softwaremill.sttp.tapir" %% "tapir-sttp-client" % "1.2.9",
"com.softwaremill.sttp.tapir" %% "tapir-zio-http-server" % "1.2.9",
"dev.profunktor" %% "redis4cats-effects" % "1.4.0",
"dev.zio" %% "zio-interop-cats" % "23.0.0.0",
"dev.zio" %% "zio-kafka" % "2.0.7",
"dev.zio" %% "zio-nio" % "2.0.1",
"io.opentelemetry" % "opentelemetry-api" % "1.23.1",
"org.tpolecat" %% "doobie-postgres" % "1.0.0-RC2",
"org.tpolecat" %% "doobie-hikari" % "1.0.0-RC2"
)
)