From 20888c75cd9565a369611b02d05106fe451d9948 Mon Sep 17 00:00:00 2001 From: Marissa Date: Thu, 31 Aug 2023 07:05:23 -0400 Subject: [PATCH] fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! Redesign context implementation move vault dep to test-only, add missing cats-effect dep --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index c3c6fbfa8..3e15782f1 100644 --- a/build.sbt +++ b/build.sbt @@ -83,8 +83,9 @@ lazy val `core-common` = crossProject(JVMPlatform, JSPlatform, NativePlatform) name := "otel4s-core-common", libraryDependencies ++= Seq( "org.typelevel" %%% "cats-core" % CatsVersion, + "org.typelevel" %%% "cats-effect" % CatsEffectVersion, "org.typelevel" %%% "cats-mtl" % CatsMtlVersion, - "org.typelevel" %%% "vault" % VaultVersion, + "org.typelevel" %%% "vault" % VaultVersion % Test, "org.typelevel" %%% "cats-laws" % CatsVersion % Test, "org.typelevel" %%% "discipline-munit" % DisciplineMUnitVersion % Test, "org.scalameta" %%% "munit" % MUnitVersion % Test,