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
feat: Support categories and keywords in forc manifest (#6974)
## Description
Related FuelLabs/forc.pub#30
## Checklist
- [ ] I have linked to any relevant issues.
- [ ] I have commented my code, particularly in hard-to-understand
areas.
- [ ] I have updated the documentation where relevant (API docs, the
reference, and the Sway book).
- [ ] If my change requires substantial documentation changes, I have
[requested support from the DevRel
team](https://github.com/FuelLabs/devrel-requests/issues/new/choose)
- [ ] I have added tests that prove my fix is effective or that my
feature works.
- [ ] I have added (or requested a maintainer to add) the necessary
`Breaking*` or `New Feature` labels where relevant.
- [ ] I have done my best to ensure that my PR adheres to [the Fuel Labs
Code Review
Standards](https://github.com/FuelLabs/rfcs/blob/master/text/code-standards/external-contributors.md).
- [ ] I have requested a review from the relevant team or maintainers.
Copy file name to clipboardexpand all lines: docs/book/src/forc/manifest_reference.md
+6
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,8 @@ The `Forc.toml` (the _manifest_ file) is a compulsory file for each package and
12
12
*`homepage` — URL of the project homepage.
13
13
*`repository` — URL of the project source repository.
14
14
*`documentation` — URL of the project documentation.
15
+
*`categories` — Categories of the project.
16
+
*`keywords` — Keywords the project.
15
17
*`entry` — The entry point for the compiler to start parsing from.
16
18
* For the recommended way of selecting an entry point of large libraries please take a look at: [Libraries](./../sway-program-types/libraries.md)
17
19
*`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._
@@ -39,6 +41,8 @@ An example `Forc.toml` is shown below. Under `[project]` the following fields ar
39
41
*`homepage`
40
42
*`repository`
41
43
*`documentation`
44
+
*`categories`
45
+
*`keywords`
42
46
43
47
Also for the following fields, a default value is provided so omitting them is allowed:
0 commit comments