File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ Some common cargo commands are (see all commands with --list):
206
206
update Update dependencies listed in Cargo.lock
207
207
search Search registry for crates
208
208
publish Package and upload this package to the registry
209
- install Install a Rust binary
209
+ install Install a Rust binary. Default location is $HOME/.cargo/bin
210
210
uninstall Uninstall a Rust binary
211
211
212
212
See 'cargo help <command>' for more information on a specific command.\n " ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use cargo::util::ToUrl;
6
6
7
7
pub fn cli ( ) -> App {
8
8
subcommand ( "install" )
9
- . about ( "Install a Rust binary" )
9
+ . about ( "Install a Rust binary. Default location is $HOME/.cargo/bin " )
10
10
. arg ( Arg :: with_name ( "crate" ) . empty_values ( false ) . multiple ( true ) )
11
11
. arg (
12
12
opt ( "version" , "Specify a version to install from crates.io" )
You can’t perform that action at this time.
0 commit comments