mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
19 lines
574 B
Plaintext
19 lines
574 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# cargo verify-project
|
|
|
|
> Check the correctness of the `Cargo.toml` manifest and print the result as a JSON object.
|
|
> Note: this command is deprecated and may be removed in the future.
|
|
> More information: <https://doc.rust-lang.org/cargo/commands/deprecated-and-removed.html>.
|
|
|
|
- Check the correctness of the current project's manifest:
|
|
|
|
`cargo verify-project`
|
|
|
|
- Check the correctness of the specified manifest file:
|
|
|
|
`cargo verify-project --manifest-path {{path/to/Cargo.toml}}`
|