rust-embedded/cortex-m-quickstart

No documentation for v0.3.2

gbip opened this issue · 3 comments

gbip commented

Currently docs.rs show

The requested resource does not exist

About cortex-m-quickstart.

The problem is here and is an error building panic-semihosting on docs.rs (which itself doesn't have docs, same problem).

It should clear up once panic_implementation becomes stable (rust-lang/rust#44489) (and panic-semihosting is updated accordingly), but until then we might be able to hack something to stop docs.rs trying to build it...

The problem is not that the feature is unstable but that the compiler docs.rs is using is too old:

$ rustc --version
rustc 1.28.0-dev (b9bf4f162 2018-06-02)

They are using a custom built compiler it seems, but it can definitively use unstable features. I don't know how often they update their compiler, but we could request a compiler update in the docs.rs issue tracker. Relevant issues: onur/docs.rs#219, onur/docs.rs#226.

This is almost 1 year old, closing issue, reopen if needed