You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cargo has an unstable rustdoc-map featurerust-lang/cargo#8296 intended to allow users to do a similar thing easily via a simple url template. We can likely use this instead of doing it manually.
The text was updated successfully, but these errors were encountered:
This needs cargo to link crates.io to docs.rs automatically before we can use it - right now you have to set a field in .cargo/config, but rustwide removes config before building the crate.
Currently we're generating
--extern-html-root-url
flags to pass to rustdoc ourselves:docs.rs/src/docbuilder/rustwide_builder.rs
Lines 521 to 529 in b527df8
This has issues (#1166, #1165).
Cargo has an unstable
rustdoc-map
feature rust-lang/cargo#8296 intended to allow users to do a similar thing easily via a simple url template. We can likely use this instead of doing it manually.The text was updated successfully, but these errors were encountered: