Skip to content

Commit 42f3469

Browse files
committed
fix: change --workspace based on feedback
1 parent 40d71fb commit 42f3469

File tree

6 files changed

+7
-22
lines changed

6 files changed

+7
-22
lines changed

src/bin/cargo/commands/update.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub fn cli() -> App {
77
subcommand("update")
88
.about("Update dependencies as recorded in the local lock file")
99
.arg(opt("quiet", "No output printed to stdout").short("q"))
10-
.arg(opt("workspace", "Only update the workspace pakcages").short("w"))
10+
.arg(opt("workspace", "Only update the workspace packages").short("w"))
1111
.arg_package_spec_simple("Package to update")
1212
.arg(opt(
1313
"aggressive",

src/cargo/ops/cargo_generate_lockfile.rs

+4-15
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,6 @@ pub fn generate_lockfile(ws: &Workspace<'_>) -> CargoResult<()> {
3636
}
3737

3838
pub fn update_lockfile(ws: &Workspace<'_>, opts: &UpdateOptions<'_>) -> CargoResult<()> {
39-
if opts.workspace {
40-
if opts.aggressive {
41-
anyhow::bail!("cannot specify aggressive for workspace updates");
42-
}
43-
if opts.precise.is_some() {
44-
anyhow::bail!("cannot specify precise for workspace updates");
45-
}
46-
47-
ws.emit_warnings()?;
48-
let (_packages, _resolve) = ops::resolve_ws(ws)?;
49-
return Ok(());
50-
}
51-
5239
if opts.aggressive && opts.precise.is_some() {
5340
anyhow::bail!("cannot specify both aggressive and precise simultaneously")
5441
}
@@ -92,8 +79,10 @@ pub fn update_lockfile(ws: &Workspace<'_>, opts: &UpdateOptions<'_>) -> CargoRes
9279
let mut to_avoid = HashSet::new();
9380

9481
if opts.to_update.is_empty() {
95-
to_avoid.extend(previous_resolve.iter());
96-
to_avoid.extend(previous_resolve.unused_patches());
82+
if !opts.workspace {
83+
to_avoid.extend(previous_resolve.iter());
84+
to_avoid.extend(previous_resolve.unused_patches());
85+
}
9786
} else {
9887
let mut sources = Vec::new();
9988
for name in opts.to_update.iter() {

src/doc/man/cargo-update.md

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ Attempt to update only packages defined in the workspace. Other packages
4949
are updated only if they don't already exist in the lockfile. This
5050
option is useful for updating `Cargo.lock` after you've changed version
5151
numbers in `Cargo.toml`.
52-
Cannot be used with `--precise` or `--aggressive`.
5352
{{/option}}
5453

5554
{{#option "`--dry-run`" }}

src/doc/man/generated_txt/cargo-update.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ OPTIONS
3939
Attempt to update only packages defined in the workspace. Other
4040
packages are updated only if they don't already exist in the
4141
lockfile. This option is useful for updating Cargo.lock after you've
42-
changed version numbers in Cargo.toml. Cannot be used with --precise
43-
or --aggressive.
42+
changed version numbers in Cargo.toml.
4443

4544
--dry-run
4645
Displays what would be updated, but doesn't actually write the

src/doc/src/commands/cargo-update.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ revision (such as a SHA hash or tag).</dd>
4848
<dd class="option-desc">Attempt to update only packages defined in the workspace. Other packages
4949
are updated only if they don't already exist in the lockfile. This
5050
option is useful for updating <code>Cargo.lock</code> after you've changed version
51-
numbers in <code>Cargo.toml</code>.
52-
Cannot be used with <code>--precise</code> or <code>--aggressive</code>.</dd>
51+
numbers in <code>Cargo.toml</code>.</dd>
5352

5453

5554
<dt class="option-term" id="option-cargo-update---dry-run"><a class="option-anchor" href="#option-cargo-update---dry-run"></a><code>--dry-run</code></dt>

src/etc/man/cargo-update.1

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ Attempt to update only packages defined in the workspace. Other packages
4949
are updated only if they don't already exist in the lockfile. This
5050
option is useful for updating \fBCargo.lock\fR after you've changed version
5151
numbers in \fBCargo.toml\fR\&.
52-
Cannot be used with \fB\-\-precise\fR or \fB\-\-aggressive\fR\&.
5352
.RE
5453
.sp
5554
\fB\-\-dry\-run\fR

0 commit comments

Comments
 (0)