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 {
55
55
. arg ( flag ( "no-track" , "Do not save tracking information" ) )
56
56
. arg_features ( )
57
57
. 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
+ ) )
59
62
. arg_targets_bins_examples (
60
63
"Install only the specified binary" ,
61
64
"Install all binaries" ,
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ whether or not [`rpath`] is enabled.
246
246
#### dev
247
247
248
248
The ` 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 ` .
250
250
251
251
The default settings for the ` dev ` profile are:
252
252
You can’t perform that action at this time.
0 commit comments