Rust tips is a user on octodon.social. You can follow them or interact with them if you have an account anywhere in the fediverse. If you don't, you can sign up here.
Rust tips @rust

Open documentation for your project and its dependencies:

cargo doc --open

Or for a specific dependency only:

cargo doc -p crate_name --open

And for itself:

rustup docs

It all works offline.

· Web · 5 · 2

@rust @springbov the dependeny-specific one is really good for working without internet connection, thanks!