Skip to content

Commit

Permalink
dependecny updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rmgk committed Nov 21, 2024
1 parent 1052312 commit b6d9deb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ lazy val proBench = project.in(file("Modules/Examples/Protocol Benchmarks"))
Dependencies.munitCheck,
Dependencies.munit,
Dependencies.slips.options,
Dependencies.jetcd,
DependenciesLocal.jetcd,
)

lazy val rdts = crossProject(JVMPlatform, JSPlatform, NativePlatform).crossType(CrossType.Pure)
Expand Down
1 change: 0 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ object Dependencies {
def scalaJavaTime = libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.3.0"
def scalajsDom = libraryDependencies += "org.scala-js" %%% "scalajs-dom" % "2.8.0"
def sqliteJdbc = libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.47.0.0"
def jetcd = libraryDependencies += "io.etcd" % "jetcd-core" % "0.8.3"

def scalatags(conf: Configuration = Compile) = libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.13.1" % conf

Expand Down
5 changes: 3 additions & 2 deletions project/DependenciesLocal.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ object DependenciesLocal {
val scalaXml = libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "2.3.0"
val slf4j = libraryDependencies += "org.slf4j" % "slf4j-jdk14" % "2.0.16" // jdk 1.4
val slf4jSimple = libraryDependencies += "org.slf4j" % "slf4j-simple" % "2.0.16" % Test
val sttpCore = libraryDependencies += "com.softwaremill.sttp.client4" %%% "core" % "4.0.0-M19"
val tink = libraryDependencies += "com.google.crypto.tink" % "tink" % "1.15.0"
val sttpCore = libraryDependencies += "com.softwaremill.sttp.client4" %%% "core" % "4.0.0-M19"
val tink = libraryDependencies += "com.google.crypto.tink" % "tink" % "1.15.0"
val jetcd = libraryDependencies += "io.etcd" % "jetcd-core" % "0.8.4"

val bouncyCastle = libraryDependencies ++=
List(
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
libraryDependencies += "org.scala-js" %% "scalajs-env-jsdom-nodejs" % "1.1.0"

// scalanative
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.5")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.6")

// crossbuilding
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")

// sbt settings
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.0") // https://github.com/dwijnand/sbt-dynver
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")

// packaging
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.0")
Expand Down

0 comments on commit b6d9deb

Please sign in to comment.