diff options
| author | Steven Fackler <[email protected]> | 2014-02-15 15:01:09 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-02-15 15:01:09 -0800 |
| commit | 05eab1f9239a44934e37957463a87b4d9ee5d890 (patch) | |
| tree | f010a139d7632d56c442c735e40747cbdc122d19 | |
| parent | Stop including debuginfo by default (diff) | |
| download | rust-openssl-05eab1f9239a44934e37957463a87b4d9ee5d890.tar.xz rust-openssl-05eab1f9239a44934e37957463a87b4d9ee5d890.zip | |
Switch to extern crate
| -rw-r--r-- | lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |