We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f1a0c2 commit 42e661aCopy full SHA for 42e661a
src/docbuilder/rustwide_builder.rs
@@ -736,6 +736,9 @@ impl RustwideBuilder {
736
r#"--config=doc.extern-map.registries.crates-io="https://docs.rs/{{pkg_name}}/{{version}}/{}""#,
737
target
738
),
739
+ // Enables the unstable rustdoc-scrape-examples feature. We are "soft launching" this feature on
740
+ // docs.rs, but once it's stable we can remove this flag.
741
+ "-Zrustdoc-scrape-examples".into(),
742
];
743
if let Some(cpu_limit) = self.config.build_cpu_limit {
744
cargo_args.push(format!("-j{}", cpu_limit));
0 commit comments