@@ -856,6 +856,7 @@ unstable_cli_options!(
856
856
rustdoc_scrape_examples: bool = ( "Allows Rustdoc to scrape code examples from reverse-dependencies" ) ,
857
857
sbom: bool = ( "Enable the `sbom` option in build config in .cargo/config.toml file" ) ,
858
858
script: bool = ( "Enable support for single-file, `.rs` packages" ) ,
859
+ section_timings: bool = ( "Enable support for extended compilation sections in --timings output" ) ,
859
860
separate_nightlies: bool ,
860
861
skip_rustdoc_fingerprint: bool ,
861
862
target_applies_to_host: bool = ( "Enable the `target-applies-to-host` key in the .cargo/config.toml file" ) ,
@@ -1380,6 +1381,7 @@ impl CliUnstable {
1380
1381
"rustdoc-map" => self . rustdoc_map = parse_empty ( k, v) ?,
1381
1382
"rustdoc-scrape-examples" => self . rustdoc_scrape_examples = parse_empty ( k, v) ?,
1382
1383
"sbom" => self . sbom = parse_empty ( k, v) ?,
1384
+ "section-timings" => self . section_timings = parse_empty ( k, v) ?,
1383
1385
"separate-nightlies" => self . separate_nightlies = parse_empty ( k, v) ?,
1384
1386
"checksum-freshness" => self . checksum_freshness = parse_empty ( k, v) ?,
1385
1387
"skip-rustdoc-fingerprint" => self . skip_rustdoc_fingerprint = parse_empty ( k, v) ?,
0 commit comments