File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ pub trait CommandExt: Sized {
291
291
}
292
292
293
293
fn arg_dry_run ( self , dry_run : & ' static str ) -> Self {
294
- self . _arg ( flag ( "dry-run" , dry_run) )
294
+ self . _arg ( flag ( "dry-run" , dry_run) . short ( 'n' ) )
295
295
}
296
296
297
297
fn arg_ignore_rust_version ( self ) -> Self {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ Options:
42
42
--ignore-rust-version
43
43
Ignore `rust-version` specification in packages (unstable)
44
44
45
- --dry-run
45
+ -n, --dry-run
46
46
Don't actually write the manifest
47
47
48
48
-q, --quiet
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Upload a package to the registry
3
3
Usage: cargo[EXE] publish [OPTIONS]
4
4
5
5
Options:
6
- --dry-run Perform all checks without uploading
6
+ -n, --dry-run Perform all checks without uploading
7
7
--index <INDEX> Registry index URL to upload the package to
8
8
--registry <REGISTRY> Registry to publish to
9
9
--token <TOKEN> Token to use when uploading
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Arguments:
6
6
<DEP_ID>... Dependencies to be removed
7
7
8
8
Options:
9
- --dry-run Don't actually write the manifest
9
+ -n, --dry-run Don't actually write the manifest
10
10
-q, --quiet Do not print cargo log messages
11
11
-v, --verbose... Use verbose output (-vv very verbose/build.rs output)
12
12
--color <WHEN> Coloring: auto, always, never
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Update dependencies as recorded in the local lock file
3
3
Usage: cargo[EXE] update [OPTIONS] [SPEC]...
4
4
5
5
Options:
6
- --dry-run Don't actually write the lockfile
6
+ -n, --dry-run Don't actually write the lockfile
7
7
--recursive Force updating all dependencies of [SPEC]... as well
8
8
--precise <PRECISE> Update [SPEC] to exactly PRECISE
9
9
-q, --quiet Do not print cargo log messages
You can’t perform that action at this time.
0 commit comments