diff --git a/.gitignore b/.gitignore index 6706cdd9..9aef65b4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /.rust/ +/doc/ diff --git a/lib.rs b/lib.rs index 0d1061bd..cc1d7ef6 100644 --- a/lib.rs +++ b/lib.rs @@ -1,5 +1,10 @@ #[feature(struct_variant)]; +// Needed for rustdoc-ng +#[link(name="rust-ssl", vers="0.1", + package_id="github.com/sfackler/rust-ssl")]; +#[doc(html_root_url="http://docs.octayn.net/rust-ssl/")]; + use std::cast; use std::libc::{c_int, c_void}; use std::ptr;