-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
19 lines (16 loc) · 1.08 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name := "dranik"
version := "0.1"
scalaVersion := "2.13.4"
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "1.0.3",
"dev.zio" %% "zio-logging-slf4j" % "0.5.4",
"dev.zio" %% "zio-config-magnolia" % "1.0.0-RC31",
"dev.zio" %% "zio-config-typesafe" % "1.0.0-RC31",
"com.softwaremill.sttp.client3" %% "async-http-client-backend-zio" % "3.0.0-RC13",
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.6.2",
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.6.2" % Provided,
"com.microsoft.azure" % "azure-storage" % "8.3.0",
"org.slf4j" % "slf4j-api" % "1.7.30",
"org.slf4j" % "slf4j-log4j12" % "1.7.30",
"io.github.resilience4j" % "resilience4j-ratelimiter" % "1.6.1"
)