From 1a18d72993962d1c3ef211acec048e5267f67319 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 15 Jan 2025 11:08:30 -0600 Subject: [PATCH] docs(ref): Remove uses of 'package.authors' that isn't documenting something --- src/doc/src/reference/manifest.md | 1 - src/doc/src/reference/workspaces.md | 2 -- 2 files changed, 3 deletions(-) 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,