Skip to content

Instantly share code, notes, and snippets.

@KadekM
Last active March 1, 2021 17:27
Show Gist options
  • Save KadekM/ca9c20a8b22c30b21f8660edeb2f3e24 to your computer and use it in GitHub Desktop.
Save KadekM/ca9c20a8b22c30b21f8660edeb2f3e24 to your computer and use it in GitHub Desktop.

Revisions

  1. KadekM revised this gist Mar 1, 2021. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion Markdium-Scala.scala
    Original file line number Diff line number Diff line change
    @@ -5,7 +5,6 @@ val kantanVersion = "0.6.1"
    libraryDependencies ++= Seq(
    "com.nrinaudo" %% "kantan.csv-generic" % kantanVersion,
    "com.nrinaudo" %% "kantan.csv" % kantanVersion,

    )

    val circeVersion = "0.12.3"
  2. KadekM created this gist Feb 28, 2021.
    17 changes: 17 additions & 0 deletions Markdium-Scala.scala
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    scalacOptions += "-Ymacro-annotations"

    val kantanVersion = "0.6.1"

    libraryDependencies ++= Seq(
    "com.nrinaudo" %% "kantan.csv-generic" % kantanVersion,
    "com.nrinaudo" %% "kantan.csv" % kantanVersion,

    )

    val circeVersion = "0.12.3"

    libraryDependencies ++= Seq(
    "io.circe" %% "circe-core",
    "io.circe" %% "circe-generic",
    "io.circe" %% "circe-parser"
    ).map(_ % circeVersion)