3

Is there a way of forcing private items documentation on docs build?

It can be done manually adding the doc flag --document-private-items, but I would like to force it in Cargo.toml level for example.

Netwave
  • 40,134
  • 6
  • 50
  • 93

1 Answers1

4

You can do this not with Cargo.toml but cargo's config. In your project (or in $CARGO_HOME if you want this to apply for all of your projects) create .cargo/config.toml with following contents:

[build]
rustdocflags = ["--document-private-items"]

Here is the link to the documentation.

Aleksander Krauze
  • 3,115
  • 7
  • 18