theenglishway (time) пре 2 година
родитељ
комит
b263b2d79d
1 измењених фајлова са 5 додато и 1 уклоњено
  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