diff options
| author | Steven Fackler <[email protected]> | 2015-02-07 21:28:54 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-02-07 21:30:05 -0800 |
| commit | ec65b0c67b452539fded5e06cbb6ce1d165074e0 (patch) | |
| tree | c50c22c2ce4ca095149c96a0f3a3b935b4012a5c /src/lib.rs | |
| parent | Fix deprecation warnings in openssl-sys (diff) | |
| download | rust-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.rs | 20 |
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; |