aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-02-07 21:28:54 -0800
committerSteven Fackler <[email protected]>2015-02-07 21:30:05 -0800
commitec65b0c67b452539fded5e06cbb6ce1d165074e0 (patch)
treec50c22c2ce4ca095149c96a0f3a3b935b4012a5c /src/lib.rs
parentFix deprecation warnings in openssl-sys (diff)
downloadrust-openssl-ec65b0c67b452539fded5e06cbb6ce1d165074e0.tar.xz
rust-openssl-ec65b0c67b452539fded5e06cbb6ce1d165074e0.zip
Move docs to this repo and auto build
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/lib.rs b/src/lib.rs
deleted file mode 100644
index 58f3d2f0..00000000
--- a/src/lib.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-#![feature(unsafe_destructor, core, io, std_misc, libc, hash, path)]
-#![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 "rustc-serialize" as serialize;
-
-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;