I'm currently working on a project with Rust and Cargo. It works well, but I encounter a little issue: for code reuse, most of my project is inside a lib crate. In this crate, a lot of things is private. So when I do cargo doc
, I just have documentation for public, exported stuff... which is actually great, because it's easy to see what is exported and what is not.
But I have to admit: I miss a complete documentation of the whole project, for development purpose...
Documentation for binaries includes private items from the binary crate by default.
You can now use cargo doc --document-private-items
You may not be able to do it with Cargo today, there is a workaround if you use rustdoc directly.
Run cargo doc -v
and make a note of the rustdoc command it runs:
$ cargo doc -v
Compiling docz v0.0.1 (file:///private/tmp/docz)
Running `rustdoc src/lib.rs -o /private/tmp/docz/target/doc --crate-name docz -L dependency=/private/tmp/docz/target/debug -L dependency=/private/tmp/docz/target/debug/deps`
Then, add --no-defaults --passes strip-hidden --passes collapse-docs --passes unindent-comments
to the command:
rustdoc src/lib.rs -o /private/tmp/docz/target/doc --crate-name docz \
-L dependency=/private/tmp/docz/target/debug \
-L dependency=/private/tmp/docz/target/debug/deps \
--no-defaults \
--passes strip-hidden --passes collapse-docs --passes unindent-comments
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With