We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2ddd9b commit 22f6568Copy full SHA for 22f6568
build.sbt
@@ -23,7 +23,10 @@ lazy val root = (project in file("."))
23
libraryDependencies ++= Seq(
24
"co.fs2" %% "fs2-core" % "3.2.2",
25
"co.fs2" %% "fs2-io" % "3.2.2",
26
- "com.google.crypto.tink" % "tink" % "1.6.1",
+ "com.google.crypto.tink" % "tink" % "1.6.1" excludeAll(
27
+ // excluded due to CVE in version used by tink 1.6.1 -> https://github.com/advisories/GHSA-wrvw-hg22-4m67
28
+ ExclusionRule(organization = "com.google.protobuf"),
29
+ ),
30
"com.softwaremill.magnolia1_2" %% "magnolia" % "1.0.0-M7",
31
"de.siegmar" % "fastcsv" % "1.0.3",
32
"org.mapdb" % "mapdb" % "3.0.8",
0 commit comments