File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,10 @@ pub fn cli() -> App {
5555 . arg ( flag ( "no-track" , "Do not save tracking information" ) )
5656 . arg_features ( )
5757 . arg_profile ( "Install artifacts with the specified profile" )
58- . arg ( flag ( "debug" , "Build in debug mode instead of release mode" ) )
58+ . arg ( flag (
59+ "debug" ,
60+ "Build in debug mode (with the 'dev' profile) instead of release mode" ,
61+ ) )
5962 . arg_targets_bins_examples (
6063 "Install only the specified binary" ,
6164 "Install all binaries" ,
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ whether or not [`rpath`] is enabled.
246246#### dev
247247
248248The ` dev ` profile is used for normal development and debugging. It is the
249- default for build commands like [ ` cargo build ` ] .
249+ default for build commands like [ ` cargo build ` ] , and is used for ` cargo install --debug ` .
250250
251251The default settings for the ` dev ` profile are:
252252
You can’t perform that action at this time.
0 commit comments