File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,26 @@ An Experimental Asynchronous Proramming Library for Scala 3. It aims to be:
16
16
The [ Gears Book] ( https://natsukagami.github.io/gears-book ) is a great way to getting started with programming using Gears.
17
17
It provides a tutorial, as well as a guided walkthrough of all concepts available within Gears.
18
18
19
+ ### Adding ` gears ` to your dependencies
20
+
21
+ With ` sbt ` :
22
+ ``` scala
23
+ libraryDependencies += " ch.epfl.lamp" %%% " gears" % " <version>" ,
24
+ ```
25
+
26
+ With ` mill ` :
27
+ ``` scala
28
+ def ivyDeps = Agg (
29
+ // ... other dependencies
30
+ ivy " ch.epfl.lamp:::gears::<version> "
31
+ )
32
+ ```
33
+
34
+ With ` scala ` (since 3.5.0) or ` scala-cli ` :
35
+ ``` scala
36
+ //> using dep " ch.epfl.lamp:::gears::<version>"
37
+ ```
38
+
19
39
## Setting up on an unpublished version of Gears
20
40
21
41
You will need JDK >= 21 and [ Scala Native] ( https://scala-native.org ) set up.
You can’t perform that action at this time.
0 commit comments