From b5c97725da6f112002fae05d5adbef55271dd5e7 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 12 May 2026 06:41:02 +0000 Subject: [PATCH] Update libthrift to 0.23.0 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 755831fe..7e535856 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.23.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.23.0").exclude("junit", "junit"), "com.twitter" %% "scrooge-serializer" % scroogeVersion ) )