You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes not staged for commit:
deleted: src/module.rs
Untracked files:
src/module.rs
This git status arose from deleting module.rs and then renaming a file to module.rs.
When I make changes to lib.rs and run cargo doc, updated documentation is generated. However, if I make changes to module.rs and run cargo doc, documentation is unchanged. The correct thing, of course, is for cargo doc to have picked up the changes. I presume something is going on with how cargo is treating files that git believes are "deleted".
The text was updated successfully, but these errors were encountered:
I have a project that's structured as follows:
In lib.rs, I have:
The
git status
is:This
git status
arose from deletingmodule.rs
and then renaming a file tomodule.rs
.When I make changes to
lib.rs
and runcargo doc
, updated documentation is generated. However, if I make changes tomodule.rs
and runcargo doc
, documentation is unchanged. The correct thing, of course, is forcargo doc
to have picked up the changes. I presume something is going on with howcargo
is treating files that git believes are "deleted".The text was updated successfully, but these errors were encountered: