Commit 05eab1f9 authored by Steven Fackler's avatar Steven Fackler
Browse files

Switch to extern crate

parent 5f5b55ff
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;