forked from rust-lang/cargo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(ref): Remove uses of 'package.authors' that isn't documenting so…
…mething
- Loading branch information
Showing
2 changed files
with
0 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]>", "Bob <[email protected]>"] | ||
``` | ||
|
||
The only field required by Cargo is [`name`](#the-name-field). If publishing to | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]>", "Bob <[email protected]>"] | ||
``` | ||
|
||
### 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 <[email protected]>", "Bob <[email protected]>"] | ||
``` | ||
|
||
By having a workspace without a root package, | ||
|