From ad25db49cbbc348206d8a989c39d4b13755f3ae8 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 13 Jul 2026 00:12:03 +0000 Subject: [PATCH] Update libthrift to 0.24.0 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 755831fe..6699ffda 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.24.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.24.0").exclude("junit", "junit"), "com.twitter" %% "scrooge-serializer" % scroogeVersion ) )