I am adding doc comments to a project and I want to run cargo doc periodically and examine the generated HTML. But I'm not able to run a cargo command that regenerates docs only for my project, or for specific modules within it.
I do not want to run a full cargo doc
each time as that takes too long. But when I run cargo doc --no-deps
the changes I made are not getting reflected in the generated HTML. Is there a way to generate documentation for modules or folders within my project?