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
Copy file name to clipboardExpand all lines: docs/book/src/forc/manifest_reference.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,14 @@ The `Forc.toml` (the _manifest_ file) is a compulsory file for each package and
4
4
5
5
*[`[project]`](#the-project-section) — Defines a sway project.
6
6
*`name` — The name of the project.
7
+
*`version` — The version of the project.
8
+
*`description` — A description of the project.
7
9
*`authors` — The authors of the project.
8
10
*`organization` — The organization of the project.
9
-
*`license`— The project license.
11
+
*`license` — The project license.
12
+
*`homepage` — URL of the project homepage.
13
+
*`repository` — URL of the project source repository.
14
+
*`documentation` — URL of the project documentation.
10
15
*`entry` — The entry point for the compiler to start parsing from.
11
16
* For the recommended way of selecting an entry point of large libraries please take a look at: [Libraries](./../sway-program-types/libraries.md)
12
17
*`implicit-std` - Controls whether provided `std` version (with the current `forc` version) will get added as a dependency _implicitly_. _Unless you know what you are doing, leave this as default._
@@ -29,6 +34,11 @@ An example `Forc.toml` is shown below. Under `[project]` the following fields ar
29
34
30
35
*`authors`
31
36
*`organization`
37
+
*`version`
38
+
*`description`
39
+
*`homepage`
40
+
*`repository`
41
+
*`documentation`
32
42
33
43
Also for the following fields, a default value is provided so omitting them is allowed:
34
44
@@ -39,6 +49,11 @@ Also for the following fields, a default value is provided so omitting them is a
0 commit comments