pages*: simplify page description (#12149)

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Vitor Henrique
2024-02-14 17:25:13 -03:00
committed by GitHub
parent 22e8eb3722
commit c8f956319f
204 changed files with 221 additions and 223 deletions

View File

@@ -1,17 +1,21 @@
# cargo locate-project
> Print the full path to the `Cargo.toml` manifest of the current project.
> Print the full path to the `Cargo.toml` manifest of a project.
> If the project is part of a workspace, the manifest of the project is shown, rather than that of the workspace.
> More information: <https://doc.rust-lang.org/cargo/commands/cargo-locate-project.html>.
- Print the JSON object to `stdout` with full path to the `Cargo.toml` manifest:
- Display the JSON object with full path to the `Cargo.toml` manifest:
`cargo locate-project`
- Print the project path in the specified format:
- Display the project path in the specified format:
`cargo locate-project --message-format {{plain|json}}`
- Print the `Cargo.toml` manifest located at the root of the workspace as opposed to the current workspace member:
- Display the `Cargo.toml` manifest located at the root of the workspace as opposed to the current workspace member:
`cargo locate-project --workspace`
- Display the `Cargo.toml` manifest of a specific directory:
`cargo locate-project --manifest-path {{path/to/Cargo.toml}}`