blob: 3e0f3b92c4e67078c4c6992b31763060b343ed76 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#![feature(struct_variant, macro_rules)]
#![crate_name="openssl"]
#![crate_type="rlib"]
#![crate_type="dylib"]
#![doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")]
extern crate libc;
#[cfg(test)]
extern crate serialize;
extern crate sync;
pub mod ssl;
pub mod crypto;
pub mod bn;
|