From da4383203472a2e5fd4d3fcc67672d8d8ccafdea Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 7 Jan 2014 20:49:13 -0800 Subject: [PATCH] doc: Add libgreen and libnative to the index --- doc/index.md | 2 ++ src/libgreen/lib.rs | 3 +++ src/libnative/lib.rs | 3 +++ 3 files changed, 8 insertions(+) diff --git a/doc/index.md b/doc/index.md index 6099518427bc..c24d4dd9f7cc 100644 --- a/doc/index.md +++ b/doc/index.md @@ -25,6 +25,8 @@ [std](std/index.html) [extra](extra/index.html) +[green](green/index.html) +[native](native/index.html) # Tooling diff --git a/src/libgreen/lib.rs b/src/libgreen/lib.rs index e76da27ff92e..d7e94c6d48eb 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 7691f0b55679..80eb8c00cfdf 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