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:
Looks like in newer versions (checked with 0.13.6) there is a different problem - "all at once" installation from docs like "tf.tofu" %% "tofu" % tofu-version stopped working completely, it just doesn't bring any dependent modules.
I guess it happened after this change in the Scala3/kernel+core commit.
@Grryum@dos65 Could you please give some details, was removing of dependsOn part accidental or intentional?
In readme:
But project with
build.sbt
like this not working:The text was updated successfully, but these errors were encountered: