Skip to content

Commit 1a18d72

Browse files
committed
docs(ref): Remove uses of 'package.authors' that isn't documenting something
1 parent ac22fd3 commit 1a18d72

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/doc/src/reference/manifest.md

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ The first section in a `Cargo.toml` is `[package]`.
6363
[package]
6464
name = "hello_world" # the name of the package
6565
version = "0.1.0" # the current version, obeying semver
66-
authors = ["Alice <[email protected]>", "Bob <[email protected]>"]
6766
```
6867

6968
The only field required by Cargo is [`name`](#the-name-field). If publishing to

src/doc/src/reference/workspaces.md

-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ where the workspace's `Cargo.toml` is located.
5454
[package]
5555
name = "hello_world" # the name of the package
5656
version = "0.1.0" # the current version, obeying semver
57-
authors = ["Alice <[email protected]>", "Bob <[email protected]>"]
5857
```
5958

6059
### Virtual workspace
@@ -77,7 +76,6 @@ resolver = "2"
7776
name = "hello_world" # the name of the package
7877
version = "0.1.0" # the current version, obeying semver
7978
edition = "2024" # the edition, will have no effect on a resolver used in the workspace
80-
authors = ["Alice <[email protected]>", "Bob <[email protected]>"]
8179
```
8280

8381
By having a workspace without a root package,

0 commit comments

Comments
 (0)