Skip to content

Commit facb206

Browse files
Stabilize --emit rustdoc command line option
1 parent f447fab commit facb206

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/librustdoc/lib.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -532,14 +532,6 @@ fn opts() -> Vec<RustcOptGroup> {
532532
"Generate JSON file at the top level instead of generating HTML redirection files",
533533
"",
534534
),
535-
opt(
536-
Unstable,
537-
Multi,
538-
"",
539-
"emit",
540-
"Comma separated list of types of output for rustdoc to emit",
541-
"[toolchain-shared-resources,invocation-specific,dep-info]",
542-
),
543535
opt(Unstable, FlagMulti, "", "no-run", "Compile doctests without running them", ""),
544536
opt(
545537
Unstable,
@@ -692,6 +684,14 @@ fn opts() -> Vec<RustcOptGroup> {
692684
"Includes trait implementations and other crate info from provided path. Only use with --merge=finalize",
693685
"path/to/doc.parts/<crate-name>",
694686
),
687+
opt(
688+
Stable,
689+
Multi,
690+
"",
691+
"emit",
692+
"Comma separated list of types of output for rustdoc to emit",
693+
"[toolchain-shared-resources,invocation-specific,dep-info]",
694+
),
695695
]
696696
}
697697

0 commit comments

Comments
 (0)