File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -9,37 +9,37 @@ You can require the entire toolkit in a single line:
9
9
10
10
Alternatively, you can require just a specific version of OS-Lib:
11
11
``` scala
12
- //> using dep com.lihaoyi::os-lib:0.9.1
12
+ //> using dep com.lihaoyi::os-lib:0.11.3
13
13
```
14
14
{% endtab %}
15
15
{% tab 'sbt' %}
16
16
In your ` build.sbt ` , you can add a dependency on the toolkit:
17
17
``` scala
18
18
lazy val example = project.in(file(" ." ))
19
19
.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 "
22
22
)
23
23
```
24
24
Alternatively, you can require just a specific version of OS-Lib:
25
25
``` scala
26
- libraryDependencies += " com.lihaoyi" %% " os-lib" % " 0.9.1 "
26
+ libraryDependencies += " com.lihaoyi" %% " os-lib" % " 0.11.3 "
27
27
```
28
28
{% endtab %}
29
29
{% tab 'Mill' %}
30
30
In your ` build.sc ` file, you can add a dependency on the Toolkit:
31
31
``` scala
32
32
object example extends ScalaModule {
33
- def scalaVersion = " 3.3.4 "
33
+ def scalaVersion = " 3.4.0 "
34
34
def ivyDeps =
35
35
Agg (
36
- ivy " org.scala-lang::toolkit:0.1.7 "
36
+ ivy " org.scala-lang::toolkit:0.7.0 "
37
37
)
38
38
}
39
39
```
40
40
Alternatively, you can require just a specific version of OS-Lib:
41
41
``` scala
42
- ivy " com.lihaoyi::os-lib:0.9.1 "
42
+ ivy " com.lihaoyi::os-lib:0.11.3 "
43
43
```
44
44
{% endtab %}
45
45
{% endtabs %}
You can’t perform that action at this time.
0 commit comments