aboutsummaryrefslogtreecommitdiff
path: root/lib.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-08-03 19:16:09 -0700
committerSteven Fackler <[email protected]>2014-08-03 19:16:09 -0700
commit203bdd076ec744a1794a7b151efb6b9247d43455 (patch)
tree8b4e69b8bdfd834648b73243519f4eeca301bb90 /lib.rs
parentRemove Makefile infrastructure (diff)
downloadrust-openssl-203bdd076ec744a1794a7b151efb6b9247d43455.tar.xz
rust-openssl-203bdd076ec744a1794a7b151efb6b9247d43455.zip
Shift directory structure
Diffstat (limited to 'lib.rs')
-rw-r--r--lib.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib.rs b/lib.rs
deleted file mode 100644
index 3e0f3b92..00000000
--- a/lib.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-#![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;