You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is important when running cargo doc --no-deps for a crate that depends on reqwest. Without html_root_url, there will not be links to any of reqwest's types. With html_root_url all of reqwest's types will be linked relative to that url.
This is important when running
cargo doc --no-deps
for a crate that depends on reqwest. Without html_root_url, there will not be links to any of reqwest's types. With html_root_url all of reqwest's types will be linked relative to that url.#![doc(html_root_url = "https://docs.rs/reqwest//0.6.2")]
It may be good to add a reminder in Cargo.toml so this doesn't fall out of date. Similar to serde-rs/serde@dc7ab26.
The text was updated successfully, but these errors were encountered: