From 72f3a907467880ac1fe0e1066e3ec44db9a5fcde Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 16 Feb 2023 23:38:06 +0000 Subject: [PATCH] Update libthrift to 0.18.0 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 0ed2dab4..7f40d5f4 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.18.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.18.0").exclude("junit", "junit"), "com.twitter" %% "scrooge-serializer" % scroogeVersion ) )