File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -569,7 +569,7 @@ Rust's package manager
569
569
<cyan,bold>update</> Update dependencies listed in Cargo.lock
570
570
<cyan,bold>search</> Search registry for crates
571
571
<cyan,bold>publish</> Package and upload this package to the registry
572
- <cyan,bold>install</> Install a Rust binary. Default location is $HOME/.cargo/bin
572
+ <cyan,bold>install</> Install a Rust binary
573
573
<cyan,bold>uninstall</> Uninstall a Rust binary
574
574
<cyan>...</> See all commands with <cyan,bold>--list</>
575
575
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use cargo_util::paths;
15
15
16
16
pub fn cli ( ) -> Command {
17
17
subcommand ( "install" )
18
- . about ( "Install a Rust binary. Default location is $HOME/.cargo/bin " )
18
+ . about ( "Install a Rust binary" )
19
19
. arg (
20
20
Arg :: new ( "crate" )
21
21
. value_name ( "CRATE[@<VER>]" )
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Commands:
33
33
update Update dependencies listed in Cargo.lock
34
34
search Search registry for crates
35
35
publish Package and upload this package to the registry
36
- install Install a Rust binary. Default location is $HOME/.cargo/bin
36
+ install Install a Rust binary
37
37
uninstall Uninstall a Rust binary
38
38
... See all commands with --list
39
39
Original file line number Diff line number Diff line change 1
- Install a Rust binary. Default location is $HOME/.cargo/bin
1
+ Install a Rust binary
2
2
3
3
Usage: cargo[EXE] install [OPTIONS] [CRATE[@<VER>]]...
4
4
You can’t perform that action at this time.
0 commit comments