From 6360b3c8f54b1dcde16dc2fc83e11406dba13cdb Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 9 Sep 2023 07:15:20 +0000 Subject: [PATCH] Update libthrift to 0.19.0 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 755831fe..e884aaa7 100644 --- a/build.sbt +++ b/build.sbt @@ -243,14 +243,14 @@ lazy val chillThrift = module("thrift").settings( crossPaths := false, autoScalaLibrary := false, libraryDependencies ++= Seq( - "org.apache.thrift" % "libthrift" % "0.17.0" % "provided" + "org.apache.thrift" % "libthrift" % "0.19.0" % "provided" ) ) lazy val chillScrooge = module("scrooge") .settings( libraryDependencies ++= Seq( - ("org.apache.thrift" % "libthrift" % "0.17.0").exclude("junit", "junit"), + ("org.apache.thrift" % "libthrift" % "0.19.0").exclude("junit", "junit"), "com.twitter" %% "scrooge-serializer" % scroogeVersion ) )