aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-10-06 00:15:58 -0400
committerSteven Fackler <[email protected]>2014-10-06 00:15:58 -0400
commit40c6948818f5a2ad09568307f033fe4ea08110cc (patch)
tree2ce3241b11f7a6f53fa9127e8a1e8085a4d1f6e8 /src/lib.rs
parentIgnore stderr from openssl s_server (diff)
parentBetter error handling in cert generation (diff)
downloadrust-openssl-40c6948818f5a2ad09568307f033fe4ea08110cc.tar.xz
rust-openssl-40c6948818f5a2ad09568307f033fe4ea08110cc.zip
Merge pull request #60 from vhbit/cert-gen-cleanup
Better error handling in cert generation
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9aee977d..edc8a2a5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![feature(struct_variant, macro_rules)]
+#![feature(struct_variant, macro_rules, unsafe_destructor)]
#![crate_name="openssl"]
#![crate_type="rlib"]
#![crate_type="dylib"]
@@ -11,7 +11,7 @@ extern crate sync;
mod macros;
-mod asn1;
+pub mod asn1;
pub mod bn;
pub mod bio;
pub mod crypto;