Skip to content

Commit b81b251

Browse files
committed
Auto merge of #12285 - weihanglo:remove-jobserver-per-rustc, r=ehuss
fix: remove `-Zjobserver-per-rustc` again It was accidentally added back in cfffda9
2 parents 1fa8da2 + 51326c8 commit b81b251

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/cargo/core/features.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,6 @@ unstable_cli_options!(
735735
features: Option<Vec<String>> = (HIDDEN),
736736
gitoxide: Option<GitoxideFeatures> = ("Use gitoxide for the given git interactions, or all of them if no argument is given"),
737737
host_config: bool = ("Enable the [host] section in the .cargo/config.toml file"),
738-
jobserver_per_rustc: bool = (HIDDEN),
739738
lints: bool = ("Pass `[lints]` to the linting tools"),
740739
minimal_versions: bool = ("Resolve minimal dependency versions instead of maximum"),
741740
msrv_policy: bool = ("Enable rust-version aware policy within cargo"),
@@ -1111,7 +1110,6 @@ impl CliUnstable {
11111110
)?
11121111
}
11131112
"host-config" => self.host_config = parse_empty(k, v)?,
1114-
"jobserver-per-rustc" => self.jobserver_per_rustc = parse_empty(k, v)?,
11151113
"lints" => self.lints = parse_empty(k, v)?,
11161114
"next-lockfile-bump" => self.next_lockfile_bump = parse_empty(k, v)?,
11171115
"minimal-versions" => self.minimal_versions = parse_empty(k, v)?,

0 commit comments

Comments
 (0)