You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Quick Start
## see [the docs on the microsite](https://tofu-tf.github.io/tofu)
## see the [examples in the `examples` directory](https://github.com/tofu-tf/tofu/tree/master/examples)
To use the whole utils pack just add to your `build.sbt`:
\```scala
libraryDependencies += "tf.tofu" %% "tofu" % "latest version in badge"
\```
Of course, you can also specify an exact list of `tofu` modules that you want to add to your dependencies (used in place
of `"tofu"`):
But project with build.sbt like this not working:
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.13"
lazy val root = (project in file("."))
.settings(
name := "temp",
libraryDependencies += "org.typelevel" %% "cats-effect" % "3.5.4",
libraryDependencies += "tf.tofu" %% "tofu" % "0.12.1"
)
The text was updated successfully, but these errors were encountered:
In readme:
But project with
build.sbt
like this not working:The text was updated successfully, but these errors were encountered: