Docs.rs is Down

is https://docs.rs DOWN?

2 Likes

To get docs for your project, working offline:

cargo doc --open

or to get docs for just one specific crate/package:

cargo doc --open --no-deps -p package
2 Likes

Is there a solution to generate docs for a crate that is not added to dependencies of Cargo.toml?

You'd probably have to add it temporarily to Cargo.toml, or clone its repo and run cargo doc there.

1 Like

https://github.com/rust-lang-nursery/docs.rs/issues/246

1 Like