blob: 8b334fb14c58964e83205b16c75e722afbc106ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# cargo-verify-project(1)
## NAME
cargo-verify-project --- Check correctness of crate manifest
## SYNOPSIS
`cargo verify-project` [_options_]
## DESCRIPTION
This command will parse the local manifest and check its validity. It emits a
JSON object with the result. A successful validation will display:
{"success":"true"}
An invalid workspace will display:
{"invalid":"human-readable error message"}
## OPTIONS
### Display Options
{{#options}}
{{> options-display }}
{{/options}}
### Manifest Options
{{#options}}
{{> options-manifest-path }}
{{> options-locked }}
{{/options}}
{{> section-options-common }}
{{> section-environment }}
## EXIT STATUS
* `0`: The workspace is OK.
* `1`: The workspace is invalid.
## EXAMPLES
1. Check the current workspace for errors:
cargo verify-project
## SEE ALSO
{{man "cargo" 1}}, {{man "cargo-package" 1}}
|