diff options
| author | Chris Cole <[email protected]> | 2014-11-29 19:47:09 -0500 |
|---|---|---|
| committer | Chris Cole <[email protected]> | 2014-11-29 19:47:09 -0500 |
| commit | 5f76f1cb62c70af4bbf064ea5c27c69544f04cea (patch) | |
| tree | 6c90d43f6bfdf1b2b83094c1bfc559bfbdecf554 /src/lib.rs | |
| parent | Added mod_mul. (diff) | |
| parent | Make SslStream Cloneable (diff) | |
| download | rust-openssl-5f76f1cb62c70af4bbf064ea5c27c69544f04cea.tar.xz rust-openssl-5f76f1cb62c70af4bbf064ea5c27c69544f04cea.zip | |
Merge remote-tracking branch 'upstream/master'
Conflicts:
src/bn/mod.rs
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 16 |
1 files changed, 11 insertions, 5 deletions
@@ -1,14 +1,20 @@ -#![feature(struct_variant, macro_rules)] +#![feature(macro_rules, unsafe_destructor, globs)] #![crate_name="openssl"] #![crate_type="rlib"] #![crate_type="dylib"] -#![doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")] +#![doc(html_root_url="https://sfackler.github.io/doc/openssl")] extern crate libc; #[cfg(test)] extern crate serialize; -extern crate sync; -pub mod ssl; -pub mod crypto; +extern crate "openssl-sys" as ffi; + +mod macros; + +pub mod asn1; pub mod bn; +pub mod bio; +pub mod crypto; +pub mod ssl; +pub mod x509; |