aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-11-13 21:40:09 -0600
committerSteven Fackler <[email protected]>2014-11-13 21:40:09 -0600
commitc56d8f071a9886a774513ef663117a53f1b2b67f (patch)
tree3281c631402e4e9d9a4a15bcfc96347a0a69c0db /src/lib.rs
parentBump to 0.0.1 (diff)
parentNew build system (diff)
downloadrust-openssl-c56d8f071a9886a774513ef663117a53f1b2b67f.tar.xz
rust-openssl-c56d8f071a9886a774513ef663117a53f1b2b67f.zip
Merge pull request #95 from vhbit/custom-build
New build system
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 456c8c7d..a974e399 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -9,8 +9,7 @@ extern crate libc;
extern crate serialize;
extern crate sync;
-#[cfg(target_os = "nacl")]
-extern crate "openssl-sys" as _unused;
+extern crate "openssl-sys" as ffi;
mod macros;
@@ -18,6 +17,5 @@ pub mod asn1;
pub mod bn;
pub mod bio;
pub mod crypto;
-mod ffi;
pub mod ssl;
pub mod x509;