Only document the current crate's docs, not its dependencies

Hi, everyone. Cargo doc documents everything that my crate depends on, including my crate, which takes a long time, and I was wondering if it is possible to document only the current crate, to reduce build times.

if it is not possible, then will the documentation for the dependencies show up on the docs.rs docs crate, if the crate is published?

1 Like

It's --no-deps.

docs.rs already builds docs for approximately everything on crates.io.

3 Likes

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.