Description
I am using this crate indirectly from the stm32f1 crate when I try to document that library I'm getting an error with cortex-m.
cargo doc -p stm32f1 --open
Documenting cortex-m v0.5.2 error:
[::task::Poll]` cannot be resolved, ignoring it...
|
note: lint level defined here
--> /Users/billsb/.cargo/registry/src/github.com-1ecc6299db9ec823/cortex-m-0.5.2/src/lib.rs:42:9
|
42 | #![deny(warnings)]
| ^^^^^^^^
= note: #[deny(intra_doc_link_resolution_failure)] implied by #[deny(warnings)]
= note: the link appears in this line:
[`Poll::Pending`](::task::Poll). The future will *also* register the
^^^^^^^^^^^^
= help: to escape [
and ]
characters, just add '' before them like \[
or \]
error: [::task::Context::waker]
cannot be resolved, ignoring it...
|
= note: the link appears in this line:
[`cx.waker()`](::task::Context::waker)). Once a task has been woken up,
^^^^^^^^^^^^^^^^^^^^^^
= help: to escape [
and ]
characters, just add '' before them like \[
or \]
error: Could not document cortex-m
.`