-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add flag to optionally document dev dependencies #7077
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
This is normal. The rustdoc code is written such that it is additive, it doesn't remove previously documented crates (unless you run I just had a couple observations:
|
Oh, and this will need a test when it is ready. |
☔ The latest upstream changes (presumably #7216) made this pull request unmergeable. Please resolve the merge conflicts. |
Gonna close this because I doubt I'll get to it any time soon, but if someone else wants to pick up where I left off they're more than welcome to. |
This is working. One issue that I noticed right away is that a second run of
cargo doc --open
without the--dev
option after it has already been run once with dev documentation enabled it will still show the documentation items from the last run.closes #3475