aboutsummaryrefslogtreecommitdiff
path: root/lib.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-03-29 14:23:12 -0700
committerSteven Fackler <[email protected]>2014-03-29 14:23:12 -0700
commitbf2dadd7fba702c9706a457523e049d36ed8f10b (patch)
treeea01a4053f6767c205e80a7ffd0e123adfd8828e /lib.rs
parentUpdate for vec API changes (diff)
downloadrust-openssl-rust-0.10.tar.xz
rust-openssl-rust-0.10.zip
Update to new inner attribute syntaxrust-0.10
Diffstat (limited to 'lib.rs')
-rw-r--r--lib.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib.rs b/lib.rs
index d89c8efd..5f854761 100644
--- a/lib.rs
+++ b/lib.rs
@@ -1,8 +1,8 @@
-#[feature(struct_variant, macro_rules)];
-#[crate_id="github.com/sfackler/rust-openssl#openssl:0.0"];
-#[crate_type="rlib"];
-#[crate_type="dylib"];
-#[doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")];
+#![feature(struct_variant, macro_rules)]
+#![crate_id="github.com/sfackler/rust-openssl#openssl:0.0"]
+#![crate_type="rlib"]
+#![crate_type="dylib"]
+#![doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")]
#[cfg(test)]
extern crate serialize;