diff options
| author | Steven Fackler <[email protected]> | 2014-11-13 21:40:09 -0600 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-11-13 21:40:09 -0600 |
| commit | c56d8f071a9886a774513ef663117a53f1b2b67f (patch) | |
| tree | 3281c631402e4e9d9a4a15bcfc96347a0a69c0db /src/lib.rs | |
| parent | Bump to 0.0.1 (diff) | |
| parent | New build system (diff) | |
| download | rust-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.rs | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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; |