Closed
Description
cargo 1.35.0-nightly (0e35bd8af 2019-03-13)
When running cargo doc --no-deps
, dependencies docs are still being checked even if not linked into the resulting documentation. This makes it impossible to generate documentation for my crate if I have deny( warnings )
on. I suppose it would also make it impossible for people depending on my crate to generate documentation if I had deny( warnings )
on.
In other words, it makes it impossible to use deny( warnings )
in published code.