blob: 8ad28ef243f2ab212bd50da6a5343ee093b4bee6 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# cargo-yank(1)
## NAME
cargo-yank --- Remove a pushed crate from the index
## SYNOPSIS
`cargo yank` [_options_] _crate_@_version_\
`cargo yank` [_options_] `--version` _version_ [_crate_]
## DESCRIPTION
The yank command removes a previously published crate's version from the
server's index. This command does not delete any data, and the crate will
still be available for download via the registry's download link.
Note that existing crates locked to a yanked version will still be able to
download the yanked version to use it. Cargo will, however, not allow any new
crates to be locked to any yanked version.
This command requires you to be authenticated with either the `--token` option
or using {{man "cargo-login" 1}}.
If the crate name is not specified, it will use the package name from the
current directory.
## OPTIONS
### Yank Options
{{#options}}
{{#option "`--vers` _version_" "`--version` _version_" }}
The version to yank or un-yank.
{{/option}}
{{#option "`--undo`" }}
Undo a yank, putting a version back into the index.
{{/option}}
{{> options-token }}
{{> options-index }}
{{> options-registry }}
{{/options}}
### Display Options
{{#options}}
{{> options-display }}
{{/options}}
{{> section-options-common }}
{{> section-environment }}
{{> section-exit-status }}
## EXAMPLES
1. Yank a crate from the index:
cargo yank foo@1.0.7
## SEE ALSO
{{man "cargo" 1}}, {{man "cargo-login" 1}}, {{man "cargo-publish" 1}}
|