@@ -856,6 +856,7 @@ unstable_cli_options!(
856856 rustdoc_scrape_examples: bool = ( "Allows Rustdoc to scrape code examples from reverse-dependencies" ) ,
857857 sbom: bool = ( "Enable the `sbom` option in build config in .cargo/config.toml file" ) ,
858858 script: bool = ( "Enable support for single-file, `.rs` packages" ) ,
859+ section_timings: bool = ( "Enable support for extended compilation sections in --timings output" ) ,
859860 separate_nightlies: bool ,
860861 skip_rustdoc_fingerprint: bool ,
861862 target_applies_to_host: bool = ( "Enable the `target-applies-to-host` key in the .cargo/config.toml file" ) ,
@@ -1380,6 +1381,7 @@ impl CliUnstable {
13801381 "rustdoc-map" => self . rustdoc_map = parse_empty ( k, v) ?,
13811382 "rustdoc-scrape-examples" => self . rustdoc_scrape_examples = parse_empty ( k, v) ?,
13821383 "sbom" => self . sbom = parse_empty ( k, v) ?,
1384+ "section-timings" => self . section_timings = parse_empty ( k, v) ?,
13831385 "separate-nightlies" => self . separate_nightlies = parse_empty ( k, v) ?,
13841386 "checksum-freshness" => self . checksum_freshness = parse_empty ( k, v) ?,
13851387 "skip-rustdoc-fingerprint" => self . skip_rustdoc_fingerprint = parse_empty ( k, v) ?,
0 commit comments