about summary refs log tree commit diff
path: root/src/libflate/lib.rs
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2014-03-15 14:26:12 -0700
committerSteven Fackler <sfackler@gmail.com>2014-03-15 14:26:12 -0700
commit9106c15ffda4e4988fb164e66b0cb713310ba78f (patch)
tree92299bd8f79fa67231f317129bdcbfce84f41cc7 /src/libflate/lib.rs
parent352c5e7eb767401e426e526acf5c8fe0311d8c30 (diff)
downloadrust-9106c15ffda4e4988fb164e66b0cb713310ba78f.tar.gz
rust-9106c15ffda4e4988fb164e66b0cb713310ba78f.zip
Add rustdoc html crate info
Diffstat (limited to 'src/libflate/lib.rs')
-rw-r--r--src/libflate/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs
index 41dc4e3976a..8733c127194 100644
--- a/src/libflate/lib.rs
+++ b/src/libflate/lib.rs
@@ -18,6 +18,9 @@ Simple compression
 #[crate_type = "rlib"];
 #[crate_type = "dylib"];
 #[license = "MIT/ASL2"];
+#[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_root_url = "http://static.rust-lang.org/doc/master")];
 
 use std::libc::{c_void, size_t, c_int};
 use std::libc;