File tree Expand file tree Collapse file tree 7 files changed +9
-10
lines changed Expand file tree Collapse file tree 7 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ depend on another package:
27
27
[package ]
28
28
name = " hello_world"
29
29
version = " 0.1.0"
30
- authors = [" Your Name <you@example.com>" ]
31
30
32
31
[dependencies ]
33
32
rand = { git = " https://github.com/rust-lang-nursery/rand.git" }
@@ -63,7 +62,6 @@ manifest like this:
63
62
[package ]
64
63
name = " hello_world"
65
64
version = " 0.1.0"
66
- authors = [" Your Name <you@example.com>" ]
67
65
68
66
[dependencies ]
69
67
rand = { git = " https://github.com/rust-lang-nursery/rand.git" }
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ Let’s take a closer look at `Cargo.toml`:
29
29
[package ]
30
30
name = " hello_world"
31
31
version = " 0.1.0"
32
- authors = [" Your Name <you@example.com>" ]
33
32
edition = " 2018"
34
33
35
34
[dependencies ]
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ crates:
35
35
[package ]
36
36
name = " hello_world"
37
37
version = " 0.1.0"
38
- authors = [" Your Name <you@example.com>" ]
39
38
edition = " 2018"
40
39
41
40
[dependencies ]
Original file line number Diff line number Diff line change @@ -399,6 +399,14 @@ schedule overlapping invocations of `rustc` in parallel when possible.
399
399
400
400
The ` [cargo-new] ` table defines defaults for the [ ` cargo new ` ] command.
401
401
402
+ ##### ` cargo-new.name `
403
+
404
+ This option is deprecated and unused.
405
+
406
+ ##### ` cargo-new.email `
407
+
408
+ This option is deprecated and unused.
409
+
402
410
##### ` cargo-new.vcs `
403
411
* Type: string
404
412
* Default: "git" or "none"
Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ try to fix the bug! Originally your manifest will look like:
49
49
[package ]
50
50
name = " my-library"
51
51
version = " 0.1.0"
52
- authors = [" ..." ]
53
52
54
53
[dependencies ]
55
54
uuid = " 1.0"
@@ -131,7 +130,6 @@ repository we'll edit our `Cargo.toml` to look like
131
130
[package ]
132
131
name = " my-library"
133
132
version = " 0.1.0"
134
- authors = [" ..." ]
135
133
136
134
[dependencies ]
137
135
uuid = " 1.0.1"
@@ -157,7 +155,6 @@ It's also worth noting that `[patch]` applies *transitively*. Let's say you use
157
155
[package ]
158
156
name = " my-binary"
159
157
version = " 0.1.0"
160
- authors = [" ..." ]
161
158
162
159
[dependencies ]
163
160
my-library = { git = ' https://example.com/git/my-library' }
@@ -212,7 +209,6 @@ look at the `my-binary` manifest from above again as well:
212
209
[package ]
213
210
name = " my-binary"
214
211
version = " 0.1.0"
215
- authors = [" ..." ]
216
212
217
213
[dependencies ]
218
214
my-library = { git = ' https://example.com/git/my-library' }
Original file line number Diff line number Diff line change @@ -257,7 +257,6 @@ request the org owner to do so.
257
257
258
258
[ RFC 1105 ] : https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md
259
259
[ Rust API Guidelines ] : https://rust-lang.github.io/api-guidelines/
260
- [ `authors` ] : manifest.md#the-authors-field
261
260
[ `cargo login` ] : ../commands/cargo-login.md
262
261
[ `cargo package` ] : ../commands/cargo-package.md
263
262
[ `cargo publish` ] : ../commands/cargo-publish.md
Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ considered as an exhaustive list of restrictions [crates.io] imposes.
385
385
" extras" : [" rand/simd_support" ]
386
386
},
387
387
// List of strings of the authors.
388
- // May be empty. crates.io requires at least one entry.
388
+ // May be empty.
389
389
" authors" : [" Alice <a@example.com>" ],
390
390
// Description field from the manifest.
391
391
// May be null. crates.io requires at least some content.
You can’t perform that action at this time.
0 commit comments