I am trying to re-export a proc-macro attribute. let's call the proc-macro crate macros
(not public facing), and the exporting crate public
. In public
, I have:
#[doc(inline)]
pub use macros::attribute;
And I documented the attribute in macros
. In the documentation, I made references to items in public
. but rustdoc can't find the link. I tried to reach it with public::
and crate::
, neither works.
Is there a way to reference items in exporting crate from a #[doc(inline)]
'd item?