aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-02-15 15:01:09 -0800
committerSteven Fackler <[email protected]>2014-02-15 15:01:09 -0800
commit05eab1f9239a44934e37957463a87b4d9ee5d890 (patch)
treef010a139d7632d56c442c735e40747cbdc122d19
parentStop including debuginfo by default (diff)
downloadrust-openssl-05eab1f9239a44934e37957463a87b4d9ee5d890.tar.xz
rust-openssl-05eab1f9239a44934e37957463a87b4d9ee5d890.zip
Switch to extern crate
-rw-r--r--lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib.rs b/lib.rs
index 842f9fe8..fa0e08a2 100644
--- a/lib.rs
+++ b/lib.rs
@@ -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;