{{*set actionverb="Document"}}
cargo-rustdoc - Build a package's documentation, using specified custom flags
cargo rustdoc
[options] [--
args]
The specified target for the current package (or package specified by -p
if
provided) will be documented with the specified args being passed to the
final rustdoc invocation. Dependencies will not be documented as part of this
command. Note that rustdoc will still unconditionally receive arguments such
as -L
, --extern
, and --crate-type
, and the specified args will simply
be added to the rustdoc invocation.
See https://doc.rust-lang.org/rustdoc/index.html for documentation on rustdoc flags.
{{> description-one-target }}
To pass flags to all rustdoc processes spawned by Cargo, use the
RUSTDOCFLAGS
environment variable
or the build.rustdocflags
config value.
{{#options}}
{{#option "--open
" }}
Open the docs in a browser after building them. This will use your default
browser unless you define another one in the BROWSER
environment variable
or use the doc.browser
configuration
option.
{{/option}}
{{/options}}
{{> section-options-package }}
When no target selection options are given, cargo rustdoc
will document all
binary and library targets of the selected package. The binary will be skipped
if its name is the same as the lib target. Binaries are skipped if they have
required-features
that are missing.
{{> options-targets }}
{{> section-features }}
{{#options}}
{{> options-target-triple }}
{{> options-release }}
{{/options}}
{{#options}} {{> options-target-dir }} {{/options}}
{{#options}} {{> options-display }}
{{> options-message-format }} {{/options}}
{{#options}} {{> options-manifest-path }}
{{> options-locked }} {{/options}}
{{> section-options-common }}
{{#options}} {{> options-jobs }} {{/options}}
{{> section-profiles }}
{{> section-environment }}
{{> section-exit-status }}
-
Build documentation with custom CSS included from a given file:
cargo rustdoc --lib -- --extend-css extra.css
{{man "cargo" 1}}, {{man "cargo-doc" 1}}, {{man "rustdoc" 1}}