@@ -6,31 +6,37 @@ object Libs {
66 // 1.0.0-M1 does not work with Scala.js js yet
77 val `scala-async` = " org.scala-lang.modules" %% " scala-async" % " 0.10.0"
88
9- val `akka-stream` = " com.typesafe.akka" %% " akka-stream" % " 2.6.14"
10- val `akka-actor-typed` = " com.typesafe.akka" %% " akka-actor-typed" % " 2.6.14"
11- val `akka-actor-testkit-typed` = " com.typesafe.akka" %% " akka-actor-testkit-typed" % " 2.6.14"
12- val `akka-stream-testkit` = " com.typesafe.akka" %% " akka-stream-testkit" % " 2.6.14"
9+ private val akkaVersion = " 2.6.15"
1310
14- val `akka-http` = " com.typesafe.akka" %% " akka-http" % " 10.2.4"
15- val `akka-http-testkit` = " com.typesafe.akka" %% " akka-http-testkit" % " 10.2.4"
11+ val `akka-stream` = " com.typesafe.akka" %% " akka-stream" % akkaVersion
12+ val `akka-actor-typed` = " com.typesafe.akka" %% " akka-actor-typed" % akkaVersion
13+ val `akka-actor-testkit-typed` = " com.typesafe.akka" %% " akka-actor-testkit-typed" % akkaVersion
14+ val `akka-stream-testkit` = " com.typesafe.akka" %% " akka-stream-testkit" % akkaVersion
1615
17- val `borer-core` = dep(" io.bullet" %%% " borer-core" % " 1.7.2" )
18- val `borer-derivation` = dep(" io.bullet" %%% " borer-derivation" % " 1.7.2" )
19- val `borer-compat-akka` = " io.bullet" %% " borer-compat-akka" % " 1.7.2"
16+ private val akkaHttpVersion = " 10.2.4"
17+
18+ val `akka-http` = " com.typesafe.akka" %% " akka-http" % akkaHttpVersion
19+ val `akka-http-testkit` = " com.typesafe.akka" %% " akka-http-testkit" % akkaHttpVersion
20+
21+ private val borerVersion = " 1.7.2"
22+ val `borer-core` = dep(" io.bullet" %%% " borer-core" % borerVersion)
23+ val `borer-derivation` = dep(" io.bullet" %%% " borer-derivation" % borerVersion)
24+ val `borer-compat-akka` = " io.bullet" %% " borer-compat-akka" % borerVersion
2025
2126 val `akka-http-cors` = " ch.megard" %% " akka-http-cors" % " 1.1.1"
22- val scalatest = dep(" org.scalatest" %%% " scalatest" % " 3.2.8 " )
27+ val scalatest = dep(" org.scalatest" %%% " scalatest" % " 3.2.9 " )
2328 val `selenium-3-141` = " org.scalatestplus" %% " selenium-3-141" % " 3.2.2.0"
2429 val `scalajs-dom` = dep(" org.scala-js" %%% " scalajs-dom" % " 1.1.0" )
2530
2631 val `tmt-typed` = dep(" com.github.mushtaq.tmt-typed" %%% " tmt-typed" % " 902393a" )
2732
28- val `rsocket-core` = " io.rsocket" % " rsocket-core" % " 1.1.0"
29- val `rsocket-transport-netty` = " io.rsocket" % " rsocket-transport-netty" % " 1.1.0"
33+ private val rsocketVersion = " 1.1.1"
34+ val `rsocket-core` = " io.rsocket" % " rsocket-core" % rsocketVersion
35+ val `rsocket-transport-netty` = " io.rsocket" % " rsocket-transport-netty" % rsocketVersion
3036}
3137
3238object Prometheus {
33- val Version = " 0.10 .0"
39+ val Version = " 0.11 .0"
3440 val simpleclient = " io.prometheus" % " simpleclient" % Version
3541 val simpleclient_common = " io.prometheus" % " simpleclient_common" % Version
3642}
0 commit comments