@@ -9,37 +9,37 @@ You can require the entire toolkit in a single line:
99
1010Alternatively, you can require just a specific version of OS-Lib:
1111``` scala
12- //> using dep com.lihaoyi::os-lib:0.9.1
12+ //> using dep com.lihaoyi::os-lib:0.11.3
1313```
1414{% endtab %}
1515{% tab 'sbt' %}
1616In your ` build.sbt ` , you can add a dependency on the toolkit:
1717``` scala
1818lazy val example = project.in(file(" ." ))
1919 .settings(
20- scalaVersion := " 3.3.4 " ,
21- libraryDependencies += " org.scala-lang" %% " toolkit" % " 0.1.7 "
20+ scalaVersion := " 3.4.0 " ,
21+ libraryDependencies += " org.scala-lang" %% " toolkit" % " 0.7.0 "
2222 )
2323```
2424Alternatively, you can require just a specific version of OS-Lib:
2525``` scala
26- libraryDependencies += " com.lihaoyi" %% " os-lib" % " 0.9.1 "
26+ libraryDependencies += " com.lihaoyi" %% " os-lib" % " 0.11.3 "
2727```
2828{% endtab %}
2929{% tab 'Mill' %}
3030In your ` build.sc ` file, you can add a dependency on the Toolkit:
3131``` scala
3232object example extends ScalaModule {
33- def scalaVersion = " 3.3.4 "
33+ def scalaVersion = " 3.4.0 "
3434 def ivyDeps =
3535 Agg (
36- ivy " org.scala-lang::toolkit:0.1.7 "
36+ ivy " org.scala-lang::toolkit:0.7.0 "
3737 )
3838}
3939```
4040Alternatively, you can require just a specific version of OS-Lib:
4141``` scala
42- ivy " com.lihaoyi::os-lib:0.9.1 "
42+ ivy " com.lihaoyi::os-lib:0.11.3 "
4343```
4444{% endtab %}
4545{% endtabs %}
0 commit comments