1CARGO-UNINSTALL(1) General Commands Manual CARGO-UNINSTALL(1)
2
3
4
6 cargo-uninstall - Remove a Rust binary
7
9 cargo uninstall [options] [spec...]
10
12 This command removes a package installed with cargo-install(1). The
13 spec argument is a package ID specification of the package to remove
14 (see cargo-pkgid(1)).
15
16 By default all binaries are removed for a crate but the --bin and
17 --example flags can be used to only remove particular binaries.
18
19 The installation root is determined, in order of precedence:
20
21 • --root option
22
23 • CARGO_INSTALL_ROOT environment variable
24
25 • install.root Cargo config value
26 <https://doc.rust-lang.org/cargo/reference/config.html>
27
28 • CARGO_HOME environment variable
29
30 • $HOME/.cargo
31
33 Install Options
34 -p, --package spec...
35 Package to uninstall.
36
37 --bin name...
38 Only uninstall the binary name.
39
40 --root dir
41 Directory to uninstall packages from.
42
43 Display Options
44 -v, --verbose
45 Use verbose output. May be specified twice for "very verbose"
46 output which includes extra output such as dependency warnings and
47 build script output. May also be specified with the term.verbose
48 config value
49 <https://doc.rust-lang.org/cargo/reference/config.html>.
50
51 -q, --quiet
52 Do not print cargo log messages. May also be specified with the
53 term.quiet config value
54 <https://doc.rust-lang.org/cargo/reference/config.html>.
55
56 --color when
57 Control when colored output is used. Valid values:
58
59 • auto (default): Automatically detect if color support is
60 available on the terminal.
61
62 • always: Always display colors.
63
64 • never: Never display colors.
65
66 May also be specified with the term.color config value
67 <https://doc.rust-lang.org/cargo/reference/config.html>.
68
69 Common Options
70 +toolchain
71 If Cargo has been installed with rustup, and the first argument to
72 cargo begins with +, it will be interpreted as a rustup toolchain
73 name (such as +stable or +nightly). See the rustup documentation
74 <https://rust-lang.github.io/rustup/overrides.html> for more
75 information about how toolchain overrides work.
76
77 -h, --help
78 Prints help information.
79
80 -Z flag
81 Unstable (nightly-only) flags to Cargo. Run cargo -Z help for
82 details.
83
85 See the reference
86 <https://doc.rust-lang.org/cargo/reference/environment-variables.html>
87 for details on environment variables that Cargo reads.
88
90 • 0: Cargo succeeded.
91
92 • 101: Cargo failed to complete.
93
95 1. Uninstall a previously installed package.
96
97 cargo uninstall ripgrep
98
100 cargo(1), cargo-install(1)
101
102
103
104 CARGO-UNINSTALL(1)