We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f76ecd0 commit c18c7c7Copy full SHA for c18c7c7
src/librustdoc/lib.rs
@@ -519,17 +519,12 @@ fn main_options(options: config::Options) -> MainResult {
519
// compiler all the way through the analysis passes. The rustdoc output is
520
// then generated from the cleaned AST of the crate. This runs all the
521
// plug/cleaning passes.
522
- let crate_name = options.crate_name.clone();
523
let crate_version = options.crate_version.clone();
524
let output_format = options.output_format;
525
let (mut krate, renderinfo, renderopts, sess) = core::run_core(options);
526
527
info!("finished with rustc");
528
529
- if let Some(name) = crate_name {
530
- krate.name = name
531
- }
532
-
533
krate.version = crate_version;
534
535
if show_coverage {
0 commit comments