1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

cargo-doc: add page (#3697)

Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in>
This commit is contained in:
Jonathan Dahan 2019-12-28 08:18:12 -05:00 committed by Zlatan Vasović
parent 93f2e505de
commit c8931b963e

20
pages/common/cargo-doc.md Normal file
View file

@ -0,0 +1,20 @@
# cargo doc
> Build and view Rust package documentation offline.
> More information: <https://doc.rust-lang.org/cargo/commands/cargo-doc.html>.
- Build and view the default package documentation in the browser:
`cargo doc --open`
- Build documentation without accessing the network:
`cargo doc --offline`
- View a particular package's documentation:
`cargo doc --open --package {{package}}`
- View a particular package's documentation offline:
`cargo doc --open --offline --package {{package}}`