libs: Move favicon URLs to HTTPS

Helps prevent mixed content warnings if accessing docs over HTTPS.

Closes #25459
This commit is contained in:
Alex Crichton
2015-05-15 16:04:01 -07:00
parent 13a4b83c1a
commit 0e21beb761
29 changed files with 29 additions and 29 deletions

View File

@@ -97,7 +97,7 @@
#![crate_type = "rlib"]
#![crate_type = "dylib"]
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/nightly/",
html_playground_url = "http://play.rust-lang.org/")]
#![doc(test(no_crate_inject, attr(deny(warnings))))]