aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuki Ishikawa <sobacode@gmail.com>2018-04-23 13:49:16 +0900
committerYuki Ishikawa <sobacode@gmail.com>2018-04-23 13:49:16 +0900
commit4ff0405999690c50e420a36711ec43242fcb1f20 (patch)
treec210504d7943995f0d53c759aaca08c5bd207a76
parentb8c2647785678c58bef9c3c66584059948cdb409 (diff)
downloadsttp-4ff0405999690c50e420a36711ec43242fcb1f20.tar.gz
sttp-4ff0405999690c50e420a36711ec43242fcb1f20.tar.bz2
sttp-4ff0405999690c50e420a36711ec43242fcb1f20.zip
Bump dependencies
-rw-r--r--build.sbt10
1 files changed, 5 insertions, 5 deletions
diff --git a/build.sbt b/build.sbt
index bc5c51a..5cc507f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -33,10 +33,10 @@ val commonSettings = Seq(
.withWarnTransitiveEvictions(false)
)
-val akkaHttp = "com.typesafe.akka" %% "akka-http" % "10.1.0"
+val akkaHttp = "com.typesafe.akka" %% "akka-http" % "10.1.1"
val akkaStreams = "com.typesafe.akka" %% "akka-stream" % "2.5.11"
-val monixVersion = "2.3.3"
+val monixVersion = "3.0.0-RC1"
val monix = "io.monix" %% "monix" % monixVersion
val scalaTest = "org.scalatest" %% "scalatest" % "3.0.5"
@@ -107,7 +107,7 @@ lazy val asyncHttpClientScalazBackend: Project = (project in file(
.settings(
name := "async-http-client-backend-scalaz",
libraryDependencies ++= Seq(
- "org.scalaz" %% "scalaz-concurrent" % "7.2.20"
+ "org.scalaz" %% "scalaz-concurrent" % "7.2.21"
)
) dependsOn asyncHttpClientBackend
@@ -125,7 +125,7 @@ lazy val asyncHttpClientCatsBackend: Project = (project in file(
.settings(
name := "async-http-client-backend-cats",
libraryDependencies ++= Seq(
- "org.typelevel" %% "cats-effect" % "0.10"
+ "org.typelevel" %% "cats-effect" % "1.0.0-RC"
)
) dependsOn asyncHttpClientBackend
@@ -155,7 +155,7 @@ lazy val okhttpMonixBackend: Project = (project in file("okhttp-backend/monix"))
libraryDependencies ++= Seq(monix)
) dependsOn okhttpBackend
-lazy val circeVersion = "0.9.2"
+lazy val circeVersion = "0.9.3"
lazy val circe: Project = (project in file("json/circe"))
.settings(commonSettings: _*)