about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libgreen/lib.rs3
-rw-r--r--src/libnative/lib.rs3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/libgreen/lib.rs b/src/libgreen/lib.rs
index e76da27ff92..d7e94c6d48e 100644
--- a/src/libgreen/lib.rs
+++ b/src/libgreen/lib.rs
@@ -21,6 +21,9 @@
 #[license = "MIT/ASL2"];
 #[crate_type = "rlib"];
 #[crate_type = "dylib"];
+#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
+      html_favicon_url = "http://www.rust-lang.org/favicon.ico",
+      html_root_url = "http://static.rust-lang.org/doc/master")];
 
 // NB this does *not* include globs, please keep it that way.
 #[feature(macro_rules)];
diff --git a/src/libnative/lib.rs b/src/libnative/lib.rs
index 7691f0b5567..80eb8c00cfd 100644
--- a/src/libnative/lib.rs
+++ b/src/libnative/lib.rs
@@ -18,6 +18,9 @@
 #[license = "MIT/ASL2"];
 #[crate_type = "rlib"];
 #[crate_type = "dylib"];
+#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
+      html_favicon_url = "http://www.rust-lang.org/favicon.ico",
+      html_root_url = "http://static.rust-lang.org/doc/master")];
 
 // NB this crate explicitly does *not* allow glob imports, please seriously
 //    consider whether they're needed before adding that feature here (the