We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cargo doc
cargo-doc-live/flake-module.nix
Line 57 in fb1d443
Instead of hardcoding --document-private-items --all-features, allow the user to specify them as module options. Eg.:
--document-private-items --all-features
{ cargo-doc-live = { cargo-doc-args = "--document-private-items --all-features"; }; }
The text was updated successfully, but these errors were encountered:
To implement this, simply look at how we defined the crateName option:
crateName
Lines 21 to 27 in fb1d443
Sorry, something went wrong.
Looks like we can avoid this option entirely by adding this to Cargo.toml?
Cargo.toml
[package.metadata.docs.rs] all-features = true cargo-args = ["--document-private-items"]
https://docs.rs/about/metadata
rustDoc
srid/cargo-doc-live
services-flake
Successfully merging a pull request may close this issue.
cargo-doc-live/flake-module.nix
Line 57 in fb1d443
Instead of hardcoding
--document-private-items --all-features
, allow the user to specify them as module options. Eg.:The text was updated successfully, but these errors were encountered: