Skip to content

Commit bc4d1d9

Browse files
committed
Stabilize --keep-going
1 parent b4a770b commit bc4d1d9

37 files changed

+25
-96
lines changed

src/cargo/util/command_prelude.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ pub trait CommandExt: Sized {
8787
self.arg_jobs()._arg(
8888
flag(
8989
"keep-going",
90-
"Do not abort the build as soon as there is an error (unstable)",
90+
"Do not abort the build as soon as there is an error",
9191
)
9292
.help_heading(heading::COMPILATION_OPTIONS),
9393
)
@@ -627,11 +627,6 @@ pub trait ArgMatchesExt {
627627
}
628628
}
629629

630-
if build_config.keep_going {
631-
config
632-
.cli_unstable()
633-
.fail_if_stable_opt("--keep-going", 10496)?;
634-
}
635630
if build_config.build_plan {
636631
config
637632
.cli_unstable()

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,6 @@ OPTIONS
416416
--keep-going
417417
Build as many crates in the dependency graph as possible, rather
418418
than aborting the build on the first one that fails to build.
419-
Unstable, requires -Zunstable-options.
420419

421420
ENVIRONMENT
422421
See the reference

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,6 @@ OPTIONS
347347
--keep-going
348348
Build as many crates in the dependency graph as possible, rather
349349
than aborting the build on the first one that fails to build.
350-
Unstable, requires -Zunstable-options.
351350

352351
--future-incompat-report
353352
Displays a future-incompat report for any future-incompatible

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,6 @@ OPTIONS
332332
--keep-going
333333
Build as many crates in the dependency graph as possible, rather
334334
than aborting the build on the first one that fails to build.
335-
Unstable, requires -Zunstable-options.
336335

337336
--future-incompat-report
338337
Displays a future-incompat report for any future-incompatible

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,6 @@ OPTIONS
303303
--keep-going
304304
Build as many crates in the dependency graph as possible, rather
305305
than aborting the build on the first one that fails to build.
306-
Unstable, requires -Zunstable-options.
307306

308307
ENVIRONMENT
309308
See the reference

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,6 @@ OPTIONS
405405
--keep-going
406406
Build as many crates in the dependency graph as possible, rather
407407
than aborting the build on the first one that fails to build.
408-
Unstable, requires -Zunstable-options.
409408

410409
ENVIRONMENT
411410
See the reference

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,6 @@ OPTIONS
280280
--keep-going
281281
Build as many crates in the dependency graph as possible, rather
282282
than aborting the build on the first one that fails to build.
283-
Unstable, requires -Zunstable-options.
284283

285284
Display Options
286285
-v, --verbose

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ OPTIONS
197197
--keep-going
198198
Build as many crates in the dependency graph as possible, rather
199199
than aborting the build on the first one that fails to build.
200-
Unstable, requires -Zunstable-options.
201200

202201
Display Options
203202
-v, --verbose

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ OPTIONS
163163
--keep-going
164164
Build as many crates in the dependency graph as possible, rather
165165
than aborting the build on the first one that fails to build.
166-
Unstable, requires -Zunstable-options.
167166

168167
Display Options
169168
-v, --verbose

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,6 @@ OPTIONS
251251
--keep-going
252252
Build as many crates in the dependency graph as possible, rather
253253
than aborting the build on the first one that fails to build.
254-
Unstable, requires -Zunstable-options.
255254

256255
ENVIRONMENT
257256
See the reference

0 commit comments

Comments
 (0)