diff options
| author | Steven Fackler <[email protected]> | 2014-03-29 14:23:12 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-03-29 14:23:12 -0700 |
| commit | bf2dadd7fba702c9706a457523e049d36ed8f10b (patch) | |
| tree | ea01a4053f6767c205e80a7ffd0e123adfd8828e | |
| parent | Update for vec API changes (diff) | |
| download | rust-openssl-rust-0.10.tar.xz rust-openssl-rust-0.10.zip | |
Update to new inner attribute syntaxrust-0.10
| -rw-r--r-- | lib.rs | 10 | ||||
| -rw-r--r-- | ssl/ffi.rs | 3 |
2 files changed, 6 insertions, 7 deletions
@@ -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; @@ -1,5 +1,4 @@ -#[doc(hidden)]; -#[allow(non_camel_case_types)]; +#![allow(non_camel_case_types)] use std::libc::{c_int, c_void, c_long, c_ulong, c_char}; |