Skip to content

Latest commit

 

History

History
57 lines (34 loc) · 1.04 KB

cargo-uninstall.adoc

File metadata and controls

57 lines (34 loc) · 1.04 KB

cargo-uninstall(1) Manual Page

NAME

cargo-uninstall - Remove a Rust binary

SYNOPSIS

cargo uninstall [OPTIONS] [SPEC…​]

DESCRIPTION

This command removes a package installed with man:cargo-install[1]. The SPEC argument is a package ID specification of the package to remove (see man:cargo-pkgid[1]).

By default all binaries are removed for a crate but the --bin and --example flags can be used to only remove particular binaries.

OPTIONS

Install Options

-p
--package SPEC…​

Package to uninstall.

--bin NAME…​

Only uninstall the binary NAME.

--root DIR

Directory to uninstall packages from.

Display Options

EXAMPLES

  1. Uninstall a previously installed package.

    cargo uninstall ripgrep

SEE ALSO

man:cargo[1], man:cargo-install[1]