Browse Source

Add dependencies

theenglishway (time) 2 năm trước cách đây
mục cha
commit
b263b2d79d
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 5 1
      build.sbt

+ 5 - 1
build.sbt

@@ -25,7 +25,11 @@ version := "1.0"
 // Want to use a published library in your project?
 // You can define other libraries as dependencies in your build like this:
 
-libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "2.1.1"
+libraryDependencies := List(
+    "com.lihaoyi" %% "requests" % "0.8.0",
+    "com.lihaoyi" %% "upickle" % "3.1.0",
+    "com.lihaoyi" %% "os-lib" % "0.9.1"
+)
 
 // Here, `libraryDependencies` is a set of dependencies, and by using `+=`,
 // we're adding the scala-parser-combinators dependency to the set of dependencies