diff --git a/src/doc/src/reference/manifest.md b/src/doc/src/reference/manifest.md index 5026c9f40a3..ac030e85726 100644 --- a/src/doc/src/reference/manifest.md +++ b/src/doc/src/reference/manifest.md @@ -63,7 +63,6 @@ The first section in a `Cargo.toml` is `[package]`. [package] name = "hello_world" # the name of the package version = "0.1.0" # the current version, obeying semver -authors = ["Alice ", "Bob "] ``` The only field required by Cargo is [`name`](#the-name-field). If publishing to diff --git a/src/doc/src/reference/workspaces.md b/src/doc/src/reference/workspaces.md index ddbe36fd1ad..4bdbf3b29af 100644 --- a/src/doc/src/reference/workspaces.md +++ b/src/doc/src/reference/workspaces.md @@ -54,7 +54,6 @@ where the workspace's `Cargo.toml` is located. [package] name = "hello_world" # the name of the package version = "0.1.0" # the current version, obeying semver -authors = ["Alice ", "Bob "] ``` ### Virtual workspace @@ -77,7 +76,6 @@ resolver = "2" name = "hello_world" # the name of the package version = "0.1.0" # the current version, obeying semver edition = "2024" # the edition, will have no effect on a resolver used in the workspace -authors = ["Alice ", "Bob "] ``` By having a workspace without a root package,