aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 4f5e3e75047ab23dcb939134cb1914e7b6044f29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![feature(macro_rules, unsafe_destructor, globs)]
#![crate_name="openssl"]
#![crate_type="rlib"]
#![crate_type="dylib"]
#![doc(html_root_url="https://sfackler.github.io/doc/openssl")]

extern crate libc;
#[cfg(test)]
extern crate serialize;
extern crate sync;

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;