HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

cargo verify-project — Check the correctness of the `Cargo.toml` manifest and print the result as a JSON object. Note: this

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandclicargocheckcorrectnesscargo verify-project

Problem

How to use the cargo verify-project command: 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>.

Solution

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}}

Code Snippets

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}}

Context

tldr-pages: common/cargo verify-project

Revisions (0)

No revisions yet.