diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2019-02-07 14:28:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-07 14:28:41 +0100 |
| commit | 761caa2334bd7f3668819ee8218569f3098c4a36 (patch) | |
| tree | 460c196f56d88441245641462d833b4ca6a1100d /src/liballoc | |
| parent | da8da5e061a72b73eb1499d46f5fde36575e610a (diff) | |
| parent | 8b886e07f52d1523421a3cf0c484a4898d13b432 (diff) | |
| download | rust-761caa2334bd7f3668819ee8218569f3098c4a36.tar.gz rust-761caa2334bd7f3668819ee8218569f3098c4a36.zip | |
Rollup merge of #58185 - GuillaumeGomez:images-url, r=SimonSapin
Remove images' url to make it work even without internet connection Needed for local std docs mainly. cc @SimonSapin r? @QuietMisdreavus
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index 80097a128a5..189ba84eeed 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -55,9 +55,7 @@ reason = "this library is unlikely to be stabilized in its current \ form or name", issue = "27783")] -#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", - html_favicon_url = "https://doc.rust-lang.org/favicon.ico", - html_root_url = "https://doc.rust-lang.org/nightly/", +#![doc(html_root_url = "https://doc.rust-lang.org/nightly/", issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/", test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))] #![no_std] |
