Links in an exported proc-macro seem to always be broken without cargo doc
warning about it?
#138575
Labels
A-intra-doc-links
Area: Intra-doc links, the ability to link to items in docs by name
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
Take for example from https://docs.rs/awint/0.18.0/awint/index.html:
The line
[InlAwi](awint_macro_internals::awint_core::InlAwi)
simply routes through a dependency of the proc-macro crate that is also plainly available to theawint
crate it is reexported in. However, it is just broken. The line[crate documentation](crate)
refers to the macro crate this macro is in, so that clicking on it goes to to proc-macros lib docs.Apparently the
[InlAwi](awint_macro_internals::awint_core::InlAwi)
one has always been broken with "The requested resource does not exist", and the[crate documentation](crate)
kind worked until sometime in the past few months without me noticing orcargo doc
warning about it. I have published a workaround but it would be nice to fix this.The text was updated successfully, but these errors were encountered: