Skip to content

Commit

Permalink
Use %%% with dependencies in build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
valencik committed Nov 19, 2021
1 parent 1c39cbd commit 25dde18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ lazy val core = crossProject(JVMPlatform, JSPlatform)
name := "curly",

libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % catsV,
"org.typelevel" %%% "cats-core" % catsV,
// "org.typelevel" %% "cats-effect" % catsEffectV,

// "co.fs2" %% "fs2-core" % fs2V,
// "co.fs2" %% "fs2-io" % fs2V,

"org.http4s" %% "http4s-core" % http4sV,
"org.typelevel" %% "cats-parse" % "0.3.5",
"org.http4s" %%% "http4s-core" % http4sV,
"org.typelevel" %%% "cats-parse" % "0.3.5",
// "org.http4s" %% "http4s-ember-server" % http4sV,
// "org.http4s" %% "http4s-ember-client" % http4sV,
// "org.http4s" %% "http4s-circe" % http4sV,
Expand Down

0 comments on commit 25dde18

Please sign in to comment.