Switch to extern crate

This commit is contained in:
Steven Fackler 2014-02-15 15:01:09 -08:00
parent 5f5b55ff07
commit 05eab1f923
1 changed files with 3 additions and 3 deletions

6
lib.rs
View File

@ -4,10 +4,10 @@
#[crate_type="dylib"];
#[doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")];
extern mod extra;
extern crate extra;
#[cfg(test)]
extern mod serialize;
extern mod sync;
extern crate serialize;
extern crate sync;
pub mod ssl;
pub mod crypto;