Docs.rs didn't build my crate published on crates.io

I published a crate on crates.io successfully, but I can't find it on docs.rs even wait for hours. The badge shows "no builds".

Is there any way I can know why?

I can build doc locally on stable1.39.0. After I switch to nightly 1.41.0, I got some warning messages like below. This issue on github looks very like what i meet, but it should be fixed one year ago.

warning: `[pid]` cannot be resolved, ignoring it...
   --> src/macros.rs:11:11
    |
11  |           $(#[$odoc])*
    |             ^^^^^^^^
    |
   ::: src/pid/stat.rs:296:1
    |
296 | / define_struct! {
297 | |     /// Represent the content of /proc/[pid]/stat and /proc/[pid]/task/[tid]/stat.
298 | |     /// Returned by [`stat_of()`](fn.stat_of.html).
299 | |     ///
...   |
354 | |     }
355 | | }
    | |_- in this macro invocation
    |
    = note: `#[warn(intra_doc_link_resolution_failure)]` on by default
    = note: the link appears in this line:

            Represent the content of /proc/[pid]/stat and /proc/[pid]/task/[tid]/stat.
                                            ^^^
    = help: to escape `[` and `]` characters, just add '\' before them like `\[` or `\]`

Just saw there was issue with docs.rs which should be fixed already https://twitter.com/rustlang/status/1198691339984093185 . It's not related to your nightly build error though, only seems related to propagation to docs.rs

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.