@@ -25,16 +25,17 @@ not indent any key names; start all key names at the start of a line.
25
25
Use multi-line strings (rather than newline escape sequences) for any string
26
26
values that include multiple lines, such as the crate description.
27
27
28
- For array values, such as a list of authors , put the entire list on the same
28
+ For array values, such as a list of features , put the entire list on the same
29
29
line as the key, if it fits. Otherwise, use block indentation: put a newline
30
30
after the opening square bracket, indent each item by one indentation level,
31
31
put a comma after each item (including the last), and put the closing square
32
32
bracket at the start of a line by itself after the last item.
33
33
34
34
``` rust
35
- authors = [
36
-
37
- " Another Author <[email protected] >" ,
35
+ some_feature = [
36
+ " another_feature" ,
37
+ " yet_another_feature" ,
38
+ " some_dependency?/some_feature" ,
38
39
]
39
40
```
40
41
@@ -54,11 +55,11 @@ version = "4.5.6"
54
55
55
56
## Metadata conventions
56
57
57
- The authors list should consist of strings that each contain an author name
58
- followed by an email address in angle brackets: ` Full Name <email@address> ` .
59
- It should not contain bare email addresses, or names without email addresses.
60
- (The authors list may also include a mailing list address without an associated
61
- name.)
58
+ The authors list, if present, should consist of strings that each contain an
59
+ author name followed by an email address in angle brackets: `Full Name
60
+ < email@address > `. It should not contain bare email addresses, or names without
61
+ email addresses. (The authors list may also include a mailing list address
62
+ without an associated name.)
62
63
63
64
The license field must contain a valid [ SPDX
64
65
expression] ( https://spdx.org/spdx-specification-21-web-version#h.jxpfx0ykyb60 ) ,
0 commit comments