-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
24 lines (19 loc) · 678 Bytes
/
Copy pathbuild.sbt
File metadata and controls
24 lines (19 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name := "zio-http-datastar-chat"
version := "0.1.0"
scalaVersion := "3.7.4"
Global / onChangedBuildSource := ReloadOnSourceChanges
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "2.1.24",
"dev.zio" %% "zio-http" % "3.10.0",
"dev.zio" %% "zio-http-datastar-sdk" % "3.10.0",
"dev.zio" %% "zio-schema" % "1.8.3",
"dev.zio" %% "zio-schema-derivation" % "1.8.3",
"com.aayushatharva.brotli4j" % "brotli4j" % "1.20.0",
)
scalacOptions ++= Seq(
"-encoding",
"UTF-8",
"-feature",
"-unchecked",
"-deprecation",
)